From 7eb79058ab1e1fdda7d0d2bb476155e64d96c556 Mon Sep 17 00:00:00 2001 From: Bertrand Lorentz Date: Thu, 25 Jul 2024 11:12:25 +0200 Subject: [PATCH 01/22] Add voluntary forms to expected notice subtypes (TEDEFO-3556) Also add the corresponding NTDs in the unit test data. --- .../analysis/fact/NoticeTypesIndexFact.java | 3 +- .../tedefo-2578/invalid/notice-types/E1.json | 48 +++++++++++++++++ .../tedefo-2578/invalid/notice-types/E2.json | 48 +++++++++++++++++ .../tedefo-2578/invalid/notice-types/E3.json | 48 +++++++++++++++++ .../tedefo-2578/invalid/notice-types/E4.json | 48 +++++++++++++++++ .../tedefo-2578/invalid/notice-types/E5.json | 48 +++++++++++++++++ .../tedefo-2578/invalid/notice-types/E6.json | 48 +++++++++++++++++ .../invalid/notice-types/notice-types.json | 54 +++++++++++++++++++ .../tedefo-2578/valid/notice-types/E1.json | 48 +++++++++++++++++ .../tedefo-2578/valid/notice-types/E2.json | 48 +++++++++++++++++ .../tedefo-2578/valid/notice-types/E3.json | 48 +++++++++++++++++ .../tedefo-2578/valid/notice-types/E4.json | 48 +++++++++++++++++ .../tedefo-2578/valid/notice-types/E5.json | 48 +++++++++++++++++ .../tedefo-2578/valid/notice-types/E6.json | 48 +++++++++++++++++ .../valid/notice-types/notice-types.json | 54 +++++++++++++++++++ 15 files changed, 686 insertions(+), 1 deletion(-) create mode 100644 src/test/resources/eforms-sdk-tests/tedefo-2578/invalid/notice-types/E1.json create mode 100644 src/test/resources/eforms-sdk-tests/tedefo-2578/invalid/notice-types/E2.json create mode 100644 src/test/resources/eforms-sdk-tests/tedefo-2578/invalid/notice-types/E3.json create mode 100644 src/test/resources/eforms-sdk-tests/tedefo-2578/invalid/notice-types/E4.json create mode 100644 src/test/resources/eforms-sdk-tests/tedefo-2578/invalid/notice-types/E5.json create mode 100644 src/test/resources/eforms-sdk-tests/tedefo-2578/invalid/notice-types/E6.json create mode 100644 src/test/resources/eforms-sdk-tests/tedefo-2578/valid/notice-types/E1.json create mode 100644 src/test/resources/eforms-sdk-tests/tedefo-2578/valid/notice-types/E2.json create mode 100644 src/test/resources/eforms-sdk-tests/tedefo-2578/valid/notice-types/E3.json create mode 100644 src/test/resources/eforms-sdk-tests/tedefo-2578/valid/notice-types/E4.json create mode 100644 src/test/resources/eforms-sdk-tests/tedefo-2578/valid/notice-types/E5.json create mode 100644 src/test/resources/eforms-sdk-tests/tedefo-2578/valid/notice-types/E6.json diff --git a/src/main/java/eu/europa/ted/eforms/sdk/analysis/fact/NoticeTypesIndexFact.java b/src/main/java/eu/europa/ted/eforms/sdk/analysis/fact/NoticeTypesIndexFact.java index 115adc3..079c53f 100644 --- a/src/main/java/eu/europa/ted/eforms/sdk/analysis/fact/NoticeTypesIndexFact.java +++ b/src/main/java/eu/europa/ted/eforms/sdk/analysis/fact/NoticeTypesIndexFact.java @@ -29,7 +29,8 @@ public Set getExpectedNoticeSubtypes() { "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", - "CEI", "T01", "T02", "X01", "X02") + "CEI", "T01", "T02", "X01", "X02", + "E1", "E2", "E3", "E4", "E5", "E6") .collect(Collectors.toSet()); } diff --git a/src/test/resources/eforms-sdk-tests/tedefo-2578/invalid/notice-types/E1.json b/src/test/resources/eforms-sdk-tests/tedefo-2578/invalid/notice-types/E1.json new file mode 100644 index 0000000..b473848 --- /dev/null +++ b/src/test/resources/eforms-sdk-tests/tedefo-2578/invalid/notice-types/E1.json @@ -0,0 +1,48 @@ +{ + "ublVersion" : "2.3", + "sdkVersion" : "1.10.0", + "metadataDatabase" : { + "version" : "1.10.0", + "createdOn" : "2023-11-15T14:00:00" + }, + "noticeId" : "E1", + "metadata" : [ { + "id" : "BT-02-notice", + "contentType" : "field", + "displayType" : "COMBOBOX", + "description" : "Notice Type", + "_label" : "field|name|BT-02-notice", + "readOnly" : true + } ], + "content" : [ { + "id" : "GR-Buyer", + "contentType" : "group", + "displayType" : "SECTION", + "description" : "Contracting Party and Provider related Information", + "_label" : "group|name|GR-Buyer", + "content" : [ { + "id" : "GR-ContractingAuthority", + "contentType" : "group", + "nodeId" : "ND-ContractingParty", + "displayType" : "GROUP", + "description" : "Contracting Party related Information (URL, Legal Type, Contracting Type, Activity, …)", + "_label" : "group|name|ND-ContractingParty", + "_repeatable" : true, + "content" : [ { + "id" : "GR-ContractingAuthority-Buyer", + "contentType" : "group", + "displayType" : "GROUP", + "description" : "Contracting Party related Information (URL, Legal Type, Contracting Type, Activity, …)", + "_label" : "group|name|GR-ContractingAuthority-Buyer", + "content" : [ { + "id" : "OPT-300-Procedure-Buyer", + "contentType" : "field", + "displayType" : "COMBOBOX", + "description" : "Buyer Technical Identifier Reference", + "_label" : "field|name|OPT-300-Procedure-Buyer", + "_idSchemes" : [ "ORG" ] + } ] + } ] + } ] + } ] +} \ No newline at end of file diff --git a/src/test/resources/eforms-sdk-tests/tedefo-2578/invalid/notice-types/E2.json b/src/test/resources/eforms-sdk-tests/tedefo-2578/invalid/notice-types/E2.json new file mode 100644 index 0000000..b964082 --- /dev/null +++ b/src/test/resources/eforms-sdk-tests/tedefo-2578/invalid/notice-types/E2.json @@ -0,0 +1,48 @@ +{ + "ublVersion" : "2.3", + "sdkVersion" : "1.10.0", + "metadataDatabase" : { + "version" : "1.10.0", + "createdOn" : "2023-11-15T14:00:00" + }, + "noticeId" : "E2", + "metadata" : [ { + "id" : "BT-02-notice", + "contentType" : "field", + "displayType" : "COMBOBOX", + "description" : "Notice Type", + "_label" : "field|name|BT-02-notice", + "readOnly" : true + } ], + "content" : [ { + "id" : "GR-Buyer", + "contentType" : "group", + "displayType" : "SECTION", + "description" : "Contracting Party and Provider related Information", + "_label" : "group|name|GR-Buyer", + "content" : [ { + "id" : "GR-ContractingAuthority", + "contentType" : "group", + "nodeId" : "ND-ContractingParty", + "displayType" : "GROUP", + "description" : "Contracting Party related Information (URL, Legal Type, Contracting Type, Activity, …)", + "_label" : "group|name|ND-ContractingParty", + "_repeatable" : true, + "content" : [ { + "id" : "GR-ContractingAuthority-Buyer", + "contentType" : "group", + "displayType" : "GROUP", + "description" : "Contracting Party related Information (URL, Legal Type, Contracting Type, Activity, …)", + "_label" : "group|name|GR-ContractingAuthority-Buyer", + "content" : [ { + "id" : "OPT-300-Procedure-Buyer", + "contentType" : "field", + "displayType" : "COMBOBOX", + "description" : "Buyer Technical Identifier Reference", + "_label" : "field|name|OPT-300-Procedure-Buyer", + "_idSchemes" : [ "ORG" ] + } ] + } ] + } ] + } ] +} \ No newline at end of file diff --git a/src/test/resources/eforms-sdk-tests/tedefo-2578/invalid/notice-types/E3.json b/src/test/resources/eforms-sdk-tests/tedefo-2578/invalid/notice-types/E3.json new file mode 100644 index 0000000..dfb6e6b --- /dev/null +++ b/src/test/resources/eforms-sdk-tests/tedefo-2578/invalid/notice-types/E3.json @@ -0,0 +1,48 @@ +{ + "ublVersion" : "2.3", + "sdkVersion" : "1.10.0", + "metadataDatabase" : { + "version" : "1.10.0", + "createdOn" : "2023-11-15T14:00:00" + }, + "noticeId" : "E3", + "metadata" : [ { + "id" : "BT-02-notice", + "contentType" : "field", + "displayType" : "COMBOBOX", + "description" : "Notice Type", + "_label" : "field|name|BT-02-notice", + "readOnly" : true + } ], + "content" : [ { + "id" : "GR-Buyer", + "contentType" : "group", + "displayType" : "SECTION", + "description" : "Contracting Party and Provider related Information", + "_label" : "group|name|GR-Buyer", + "content" : [ { + "id" : "GR-ContractingAuthority", + "contentType" : "group", + "nodeId" : "ND-ContractingParty", + "displayType" : "GROUP", + "description" : "Contracting Party related Information (URL, Legal Type, Contracting Type, Activity, …)", + "_label" : "group|name|ND-ContractingParty", + "_repeatable" : true, + "content" : [ { + "id" : "GR-ContractingAuthority-Buyer", + "contentType" : "group", + "displayType" : "GROUP", + "description" : "Contracting Party related Information (URL, Legal Type, Contracting Type, Activity, …)", + "_label" : "group|name|GR-ContractingAuthority-Buyer", + "content" : [ { + "id" : "OPT-300-Procedure-Buyer", + "contentType" : "field", + "displayType" : "COMBOBOX", + "description" : "Buyer Technical Identifier Reference", + "_label" : "field|name|OPT-300-Procedure-Buyer", + "_idSchemes" : [ "ORG" ] + } ] + } ] + } ] + } ] +} \ No newline at end of file diff --git a/src/test/resources/eforms-sdk-tests/tedefo-2578/invalid/notice-types/E4.json b/src/test/resources/eforms-sdk-tests/tedefo-2578/invalid/notice-types/E4.json new file mode 100644 index 0000000..c8ae741 --- /dev/null +++ b/src/test/resources/eforms-sdk-tests/tedefo-2578/invalid/notice-types/E4.json @@ -0,0 +1,48 @@ +{ + "ublVersion" : "2.3", + "sdkVersion" : "1.10.0", + "metadataDatabase" : { + "version" : "1.10.0", + "createdOn" : "2023-11-15T14:00:00" + }, + "noticeId" : "E4", + "metadata" : [ { + "id" : "BT-02-notice", + "contentType" : "field", + "displayType" : "COMBOBOX", + "description" : "Notice Type", + "_label" : "field|name|BT-02-notice", + "readOnly" : true + } ], + "content" : [ { + "id" : "GR-Buyer", + "contentType" : "group", + "displayType" : "SECTION", + "description" : "Contracting Party and Provider related Information", + "_label" : "group|name|GR-Buyer", + "content" : [ { + "id" : "GR-ContractingAuthority", + "contentType" : "group", + "nodeId" : "ND-ContractingParty", + "displayType" : "GROUP", + "description" : "Contracting Party related Information (URL, Legal Type, Contracting Type, Activity, …)", + "_label" : "group|name|ND-ContractingParty", + "_repeatable" : true, + "content" : [ { + "id" : "GR-ContractingAuthority-Buyer", + "contentType" : "group", + "displayType" : "GROUP", + "description" : "Contracting Party related Information (URL, Legal Type, Contracting Type, Activity, …)", + "_label" : "group|name|GR-ContractingAuthority-Buyer", + "content" : [ { + "id" : "OPT-300-Procedure-Buyer", + "contentType" : "field", + "displayType" : "COMBOBOX", + "description" : "Buyer Technical Identifier Reference", + "_label" : "field|name|OPT-300-Procedure-Buyer", + "_idSchemes" : [ "ORG" ] + } ] + } ] + } ] + } ] +} \ No newline at end of file diff --git a/src/test/resources/eforms-sdk-tests/tedefo-2578/invalid/notice-types/E5.json b/src/test/resources/eforms-sdk-tests/tedefo-2578/invalid/notice-types/E5.json new file mode 100644 index 0000000..c9ec70a --- /dev/null +++ b/src/test/resources/eforms-sdk-tests/tedefo-2578/invalid/notice-types/E5.json @@ -0,0 +1,48 @@ +{ + "ublVersion" : "2.3", + "sdkVersion" : "1.10.0", + "metadataDatabase" : { + "version" : "1.10.0", + "createdOn" : "2023-11-15T14:00:00" + }, + "noticeId" : "E5", + "metadata" : [ { + "id" : "BT-02-notice", + "contentType" : "field", + "displayType" : "COMBOBOX", + "description" : "Notice Type", + "_label" : "field|name|BT-02-notice", + "readOnly" : true + } ], + "content" : [ { + "id" : "GR-Buyer", + "contentType" : "group", + "displayType" : "SECTION", + "description" : "Contracting Party and Provider related Information", + "_label" : "group|name|GR-Buyer", + "content" : [ { + "id" : "GR-ContractingAuthority", + "contentType" : "group", + "nodeId" : "ND-ContractingParty", + "displayType" : "GROUP", + "description" : "Contracting Party related Information (URL, Legal Type, Contracting Type, Activity, …)", + "_label" : "group|name|ND-ContractingParty", + "_repeatable" : true, + "content" : [ { + "id" : "GR-ContractingAuthority-Buyer", + "contentType" : "group", + "displayType" : "GROUP", + "description" : "Contracting Party related Information (URL, Legal Type, Contracting Type, Activity, …)", + "_label" : "group|name|GR-ContractingAuthority-Buyer", + "content" : [ { + "id" : "OPT-300-Procedure-Buyer", + "contentType" : "field", + "displayType" : "COMBOBOX", + "description" : "Buyer Technical Identifier Reference", + "_label" : "field|name|OPT-300-Procedure-Buyer", + "_idSchemes" : [ "ORG" ] + } ] + } ] + } ] + } ] +} \ No newline at end of file diff --git a/src/test/resources/eforms-sdk-tests/tedefo-2578/invalid/notice-types/E6.json b/src/test/resources/eforms-sdk-tests/tedefo-2578/invalid/notice-types/E6.json new file mode 100644 index 0000000..2656939 --- /dev/null +++ b/src/test/resources/eforms-sdk-tests/tedefo-2578/invalid/notice-types/E6.json @@ -0,0 +1,48 @@ +{ + "ublVersion" : "2.3", + "sdkVersion" : "1.10.0", + "metadataDatabase" : { + "version" : "1.10.0", + "createdOn" : "2023-11-15T14:00:00" + }, + "noticeId" : "E6", + "metadata" : [ { + "id" : "BT-02-notice", + "contentType" : "field", + "displayType" : "COMBOBOX", + "description" : "Notice Type", + "_label" : "field|name|BT-02-notice", + "readOnly" : true + } ], + "content" : [ { + "id" : "GR-Buyer", + "contentType" : "group", + "displayType" : "SECTION", + "description" : "Contracting Party and Provider related Information", + "_label" : "group|name|GR-Buyer", + "content" : [ { + "id" : "GR-ContractingAuthority", + "contentType" : "group", + "nodeId" : "ND-ContractingParty", + "displayType" : "GROUP", + "description" : "Contracting Party related Information (URL, Legal Type, Contracting Type, Activity, …)", + "_label" : "group|name|ND-ContractingParty", + "_repeatable" : true, + "content" : [ { + "id" : "GR-ContractingAuthority-Buyer", + "contentType" : "group", + "displayType" : "GROUP", + "description" : "Contracting Party related Information (URL, Legal Type, Contracting Type, Activity, …)", + "_label" : "group|name|GR-ContractingAuthority-Buyer", + "content" : [ { + "id" : "OPT-300-Procedure-Buyer", + "contentType" : "field", + "displayType" : "COMBOBOX", + "description" : "Buyer Technical Identifier Reference", + "_label" : "field|name|OPT-300-Procedure-Buyer", + "_idSchemes" : [ "ORG" ] + } ] + } ] + } ] + } ] +} \ No newline at end of file diff --git a/src/test/resources/eforms-sdk-tests/tedefo-2578/invalid/notice-types/notice-types.json b/src/test/resources/eforms-sdk-tests/tedefo-2578/invalid/notice-types/notice-types.json index c5967ed..a176514 100644 --- a/src/test/resources/eforms-sdk-tests/tedefo-2578/invalid/notice-types/notice-types.json +++ b/src/test/resources/eforms-sdk-tests/tedefo-2578/invalid/notice-types/notice-types.json @@ -392,6 +392,60 @@ "subTypeId" : "X02", "_label" : "notice|name|X02", "viewTemplateIds" : [ "summary", "X02" ] + }, { + "documentType" : "PIN", + "legalBasis" : "other", + "formType" : "planning", + "type" : "pin-only", + "description" : "Voluntary Pre-market Consultation Notice", + "subTypeId" : "E1", + "_label" : "notice|name|E1", + "viewTemplateIds" : [ "summary", "E1" ] + }, { + "documentType" : "PIN", + "legalBasis" : "other", + "formType" : "planning", + "type" : "pin-only", + "description" : "Voluntary Prior Information Notice", + "subTypeId" : "E2", + "_label" : "notice|name|E2", + "viewTemplateIds" : [ "summary", "E2" ] + }, { + "documentType" : "CN", + "legalBasis" : "other", + "formType" : "competition", + "type" : "cn-standard", + "description" : "Voluntary Contract Notice", + "subTypeId" : "E3", + "_label" : "notice|name|E3", + "viewTemplateIds" : [ "summary", "E3" ] + }, { + "documentType" : "CAN", + "legalBasis" : "other", + "formType" : "result", + "type" : "can-standard", + "description" : "Voluntary Award Notice", + "subTypeId" : "E4", + "_label" : "notice|name|E4", + "viewTemplateIds" : [ "summary", "E4" ] + }, { + "documentType" : "CAN", + "legalBasis" : "other", + "formType" : "completion", + "type" : "", + "description" : "Voluntary Completion Notice", + "subTypeId" : "E5", + "_label" : "notice|name|E5", + "viewTemplateIds" : [ "summary", "E5" ] + }, { + "documentType" : "CAN", + "legalBasis" : "other", + "formType" : "cont-modif", + "type" : "can-modif", + "description" : "Voluntary Contract Modification Notice", + "subTypeId" : "E6", + "_label" : "notice|name|E6", + "viewTemplateIds" : [ "summary", "E6" ] } ], "documentTypes" : [ { "id" : "BRIN", diff --git a/src/test/resources/eforms-sdk-tests/tedefo-2578/valid/notice-types/E1.json b/src/test/resources/eforms-sdk-tests/tedefo-2578/valid/notice-types/E1.json new file mode 100644 index 0000000..b473848 --- /dev/null +++ b/src/test/resources/eforms-sdk-tests/tedefo-2578/valid/notice-types/E1.json @@ -0,0 +1,48 @@ +{ + "ublVersion" : "2.3", + "sdkVersion" : "1.10.0", + "metadataDatabase" : { + "version" : "1.10.0", + "createdOn" : "2023-11-15T14:00:00" + }, + "noticeId" : "E1", + "metadata" : [ { + "id" : "BT-02-notice", + "contentType" : "field", + "displayType" : "COMBOBOX", + "description" : "Notice Type", + "_label" : "field|name|BT-02-notice", + "readOnly" : true + } ], + "content" : [ { + "id" : "GR-Buyer", + "contentType" : "group", + "displayType" : "SECTION", + "description" : "Contracting Party and Provider related Information", + "_label" : "group|name|GR-Buyer", + "content" : [ { + "id" : "GR-ContractingAuthority", + "contentType" : "group", + "nodeId" : "ND-ContractingParty", + "displayType" : "GROUP", + "description" : "Contracting Party related Information (URL, Legal Type, Contracting Type, Activity, …)", + "_label" : "group|name|ND-ContractingParty", + "_repeatable" : true, + "content" : [ { + "id" : "GR-ContractingAuthority-Buyer", + "contentType" : "group", + "displayType" : "GROUP", + "description" : "Contracting Party related Information (URL, Legal Type, Contracting Type, Activity, …)", + "_label" : "group|name|GR-ContractingAuthority-Buyer", + "content" : [ { + "id" : "OPT-300-Procedure-Buyer", + "contentType" : "field", + "displayType" : "COMBOBOX", + "description" : "Buyer Technical Identifier Reference", + "_label" : "field|name|OPT-300-Procedure-Buyer", + "_idSchemes" : [ "ORG" ] + } ] + } ] + } ] + } ] +} \ No newline at end of file diff --git a/src/test/resources/eforms-sdk-tests/tedefo-2578/valid/notice-types/E2.json b/src/test/resources/eforms-sdk-tests/tedefo-2578/valid/notice-types/E2.json new file mode 100644 index 0000000..b964082 --- /dev/null +++ b/src/test/resources/eforms-sdk-tests/tedefo-2578/valid/notice-types/E2.json @@ -0,0 +1,48 @@ +{ + "ublVersion" : "2.3", + "sdkVersion" : "1.10.0", + "metadataDatabase" : { + "version" : "1.10.0", + "createdOn" : "2023-11-15T14:00:00" + }, + "noticeId" : "E2", + "metadata" : [ { + "id" : "BT-02-notice", + "contentType" : "field", + "displayType" : "COMBOBOX", + "description" : "Notice Type", + "_label" : "field|name|BT-02-notice", + "readOnly" : true + } ], + "content" : [ { + "id" : "GR-Buyer", + "contentType" : "group", + "displayType" : "SECTION", + "description" : "Contracting Party and Provider related Information", + "_label" : "group|name|GR-Buyer", + "content" : [ { + "id" : "GR-ContractingAuthority", + "contentType" : "group", + "nodeId" : "ND-ContractingParty", + "displayType" : "GROUP", + "description" : "Contracting Party related Information (URL, Legal Type, Contracting Type, Activity, …)", + "_label" : "group|name|ND-ContractingParty", + "_repeatable" : true, + "content" : [ { + "id" : "GR-ContractingAuthority-Buyer", + "contentType" : "group", + "displayType" : "GROUP", + "description" : "Contracting Party related Information (URL, Legal Type, Contracting Type, Activity, …)", + "_label" : "group|name|GR-ContractingAuthority-Buyer", + "content" : [ { + "id" : "OPT-300-Procedure-Buyer", + "contentType" : "field", + "displayType" : "COMBOBOX", + "description" : "Buyer Technical Identifier Reference", + "_label" : "field|name|OPT-300-Procedure-Buyer", + "_idSchemes" : [ "ORG" ] + } ] + } ] + } ] + } ] +} \ No newline at end of file diff --git a/src/test/resources/eforms-sdk-tests/tedefo-2578/valid/notice-types/E3.json b/src/test/resources/eforms-sdk-tests/tedefo-2578/valid/notice-types/E3.json new file mode 100644 index 0000000..dfb6e6b --- /dev/null +++ b/src/test/resources/eforms-sdk-tests/tedefo-2578/valid/notice-types/E3.json @@ -0,0 +1,48 @@ +{ + "ublVersion" : "2.3", + "sdkVersion" : "1.10.0", + "metadataDatabase" : { + "version" : "1.10.0", + "createdOn" : "2023-11-15T14:00:00" + }, + "noticeId" : "E3", + "metadata" : [ { + "id" : "BT-02-notice", + "contentType" : "field", + "displayType" : "COMBOBOX", + "description" : "Notice Type", + "_label" : "field|name|BT-02-notice", + "readOnly" : true + } ], + "content" : [ { + "id" : "GR-Buyer", + "contentType" : "group", + "displayType" : "SECTION", + "description" : "Contracting Party and Provider related Information", + "_label" : "group|name|GR-Buyer", + "content" : [ { + "id" : "GR-ContractingAuthority", + "contentType" : "group", + "nodeId" : "ND-ContractingParty", + "displayType" : "GROUP", + "description" : "Contracting Party related Information (URL, Legal Type, Contracting Type, Activity, …)", + "_label" : "group|name|ND-ContractingParty", + "_repeatable" : true, + "content" : [ { + "id" : "GR-ContractingAuthority-Buyer", + "contentType" : "group", + "displayType" : "GROUP", + "description" : "Contracting Party related Information (URL, Legal Type, Contracting Type, Activity, …)", + "_label" : "group|name|GR-ContractingAuthority-Buyer", + "content" : [ { + "id" : "OPT-300-Procedure-Buyer", + "contentType" : "field", + "displayType" : "COMBOBOX", + "description" : "Buyer Technical Identifier Reference", + "_label" : "field|name|OPT-300-Procedure-Buyer", + "_idSchemes" : [ "ORG" ] + } ] + } ] + } ] + } ] +} \ No newline at end of file diff --git a/src/test/resources/eforms-sdk-tests/tedefo-2578/valid/notice-types/E4.json b/src/test/resources/eforms-sdk-tests/tedefo-2578/valid/notice-types/E4.json new file mode 100644 index 0000000..c8ae741 --- /dev/null +++ b/src/test/resources/eforms-sdk-tests/tedefo-2578/valid/notice-types/E4.json @@ -0,0 +1,48 @@ +{ + "ublVersion" : "2.3", + "sdkVersion" : "1.10.0", + "metadataDatabase" : { + "version" : "1.10.0", + "createdOn" : "2023-11-15T14:00:00" + }, + "noticeId" : "E4", + "metadata" : [ { + "id" : "BT-02-notice", + "contentType" : "field", + "displayType" : "COMBOBOX", + "description" : "Notice Type", + "_label" : "field|name|BT-02-notice", + "readOnly" : true + } ], + "content" : [ { + "id" : "GR-Buyer", + "contentType" : "group", + "displayType" : "SECTION", + "description" : "Contracting Party and Provider related Information", + "_label" : "group|name|GR-Buyer", + "content" : [ { + "id" : "GR-ContractingAuthority", + "contentType" : "group", + "nodeId" : "ND-ContractingParty", + "displayType" : "GROUP", + "description" : "Contracting Party related Information (URL, Legal Type, Contracting Type, Activity, …)", + "_label" : "group|name|ND-ContractingParty", + "_repeatable" : true, + "content" : [ { + "id" : "GR-ContractingAuthority-Buyer", + "contentType" : "group", + "displayType" : "GROUP", + "description" : "Contracting Party related Information (URL, Legal Type, Contracting Type, Activity, …)", + "_label" : "group|name|GR-ContractingAuthority-Buyer", + "content" : [ { + "id" : "OPT-300-Procedure-Buyer", + "contentType" : "field", + "displayType" : "COMBOBOX", + "description" : "Buyer Technical Identifier Reference", + "_label" : "field|name|OPT-300-Procedure-Buyer", + "_idSchemes" : [ "ORG" ] + } ] + } ] + } ] + } ] +} \ No newline at end of file diff --git a/src/test/resources/eforms-sdk-tests/tedefo-2578/valid/notice-types/E5.json b/src/test/resources/eforms-sdk-tests/tedefo-2578/valid/notice-types/E5.json new file mode 100644 index 0000000..c9ec70a --- /dev/null +++ b/src/test/resources/eforms-sdk-tests/tedefo-2578/valid/notice-types/E5.json @@ -0,0 +1,48 @@ +{ + "ublVersion" : "2.3", + "sdkVersion" : "1.10.0", + "metadataDatabase" : { + "version" : "1.10.0", + "createdOn" : "2023-11-15T14:00:00" + }, + "noticeId" : "E5", + "metadata" : [ { + "id" : "BT-02-notice", + "contentType" : "field", + "displayType" : "COMBOBOX", + "description" : "Notice Type", + "_label" : "field|name|BT-02-notice", + "readOnly" : true + } ], + "content" : [ { + "id" : "GR-Buyer", + "contentType" : "group", + "displayType" : "SECTION", + "description" : "Contracting Party and Provider related Information", + "_label" : "group|name|GR-Buyer", + "content" : [ { + "id" : "GR-ContractingAuthority", + "contentType" : "group", + "nodeId" : "ND-ContractingParty", + "displayType" : "GROUP", + "description" : "Contracting Party related Information (URL, Legal Type, Contracting Type, Activity, …)", + "_label" : "group|name|ND-ContractingParty", + "_repeatable" : true, + "content" : [ { + "id" : "GR-ContractingAuthority-Buyer", + "contentType" : "group", + "displayType" : "GROUP", + "description" : "Contracting Party related Information (URL, Legal Type, Contracting Type, Activity, …)", + "_label" : "group|name|GR-ContractingAuthority-Buyer", + "content" : [ { + "id" : "OPT-300-Procedure-Buyer", + "contentType" : "field", + "displayType" : "COMBOBOX", + "description" : "Buyer Technical Identifier Reference", + "_label" : "field|name|OPT-300-Procedure-Buyer", + "_idSchemes" : [ "ORG" ] + } ] + } ] + } ] + } ] +} \ No newline at end of file diff --git a/src/test/resources/eforms-sdk-tests/tedefo-2578/valid/notice-types/E6.json b/src/test/resources/eforms-sdk-tests/tedefo-2578/valid/notice-types/E6.json new file mode 100644 index 0000000..2656939 --- /dev/null +++ b/src/test/resources/eforms-sdk-tests/tedefo-2578/valid/notice-types/E6.json @@ -0,0 +1,48 @@ +{ + "ublVersion" : "2.3", + "sdkVersion" : "1.10.0", + "metadataDatabase" : { + "version" : "1.10.0", + "createdOn" : "2023-11-15T14:00:00" + }, + "noticeId" : "E6", + "metadata" : [ { + "id" : "BT-02-notice", + "contentType" : "field", + "displayType" : "COMBOBOX", + "description" : "Notice Type", + "_label" : "field|name|BT-02-notice", + "readOnly" : true + } ], + "content" : [ { + "id" : "GR-Buyer", + "contentType" : "group", + "displayType" : "SECTION", + "description" : "Contracting Party and Provider related Information", + "_label" : "group|name|GR-Buyer", + "content" : [ { + "id" : "GR-ContractingAuthority", + "contentType" : "group", + "nodeId" : "ND-ContractingParty", + "displayType" : "GROUP", + "description" : "Contracting Party related Information (URL, Legal Type, Contracting Type, Activity, …)", + "_label" : "group|name|ND-ContractingParty", + "_repeatable" : true, + "content" : [ { + "id" : "GR-ContractingAuthority-Buyer", + "contentType" : "group", + "displayType" : "GROUP", + "description" : "Contracting Party related Information (URL, Legal Type, Contracting Type, Activity, …)", + "_label" : "group|name|GR-ContractingAuthority-Buyer", + "content" : [ { + "id" : "OPT-300-Procedure-Buyer", + "contentType" : "field", + "displayType" : "COMBOBOX", + "description" : "Buyer Technical Identifier Reference", + "_label" : "field|name|OPT-300-Procedure-Buyer", + "_idSchemes" : [ "ORG" ] + } ] + } ] + } ] + } ] +} \ No newline at end of file diff --git a/src/test/resources/eforms-sdk-tests/tedefo-2578/valid/notice-types/notice-types.json b/src/test/resources/eforms-sdk-tests/tedefo-2578/valid/notice-types/notice-types.json index 66ec2ec..c5b38d6 100644 --- a/src/test/resources/eforms-sdk-tests/tedefo-2578/valid/notice-types/notice-types.json +++ b/src/test/resources/eforms-sdk-tests/tedefo-2578/valid/notice-types/notice-types.json @@ -410,6 +410,60 @@ "subTypeId" : "X02", "_label" : "notice|name|X02", "viewTemplateIds" : [ "summary", "X02" ] + }, { + "documentType" : "PIN", + "legalBasis" : "other", + "formType" : "planning", + "type" : "pin-only", + "description" : "Voluntary Pre-market Consultation Notice", + "subTypeId" : "E1", + "_label" : "notice|name|E1", + "viewTemplateIds" : [ "summary", "E1" ] + }, { + "documentType" : "PIN", + "legalBasis" : "other", + "formType" : "planning", + "type" : "pin-only", + "description" : "Voluntary Prior Information Notice", + "subTypeId" : "E2", + "_label" : "notice|name|E2", + "viewTemplateIds" : [ "summary", "E2" ] + }, { + "documentType" : "CN", + "legalBasis" : "other", + "formType" : "competition", + "type" : "cn-standard", + "description" : "Voluntary Contract Notice", + "subTypeId" : "E3", + "_label" : "notice|name|E3", + "viewTemplateIds" : [ "summary", "E3" ] + }, { + "documentType" : "CAN", + "legalBasis" : "other", + "formType" : "result", + "type" : "can-standard", + "description" : "Voluntary Award Notice", + "subTypeId" : "E4", + "_label" : "notice|name|E4", + "viewTemplateIds" : [ "summary", "E4" ] + }, { + "documentType" : "CAN", + "legalBasis" : "other", + "formType" : "completion", + "type" : "", + "description" : "Voluntary Completion Notice", + "subTypeId" : "E5", + "_label" : "notice|name|E5", + "viewTemplateIds" : [ "summary", "E5" ] + }, { + "documentType" : "CAN", + "legalBasis" : "other", + "formType" : "cont-modif", + "type" : "can-modif", + "description" : "Voluntary Contract Modification Notice", + "subTypeId" : "E6", + "_label" : "notice|name|E6", + "viewTemplateIds" : [ "summary", "E6" ] } ], "documentTypes" : [ { "id" : "BRIN", From 7776e5edf2495c7e418753ef7c7214983c277eae Mon Sep 17 00:00:00 2001 From: Bertrand Lorentz Date: Fri, 9 Aug 2024 10:05:59 +0200 Subject: [PATCH 02/22] pom: Update to latest releases of eforms-core-java and efx-toolkit --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 633c25c..81130aa 100644 --- a/pom.xml +++ b/pom.xml @@ -36,8 +36,8 @@ ${java.version} ${java.version} - 1.4.0-SNAPSHOT - 2.0.0-SNAPSHOT + 1.4.0 + 2.0.0-alpha.4 4.4 From ee56149219afb277a4548bd07cc523a337bd33ba Mon Sep 17 00:00:00 2001 From: Bertrand Lorentz Date: Fri, 9 Aug 2024 13:55:21 +0200 Subject: [PATCH 03/22] pom: Fix property names for maven plugin versions Also update to the latest version. --- pom.xml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pom.xml b/pom.xml index 81130aa..54a521c 100644 --- a/pom.xml +++ b/pom.xml @@ -58,8 +58,8 @@ 2.3.0 - 3.10.1 - 3.3.0 + 3.13.0 + 3.6.0 @@ -384,12 +384,12 @@ org.apache.maven.plugins maven-compiler-plugin - ${version.compiler.version} + ${version.compiler.plugin} org.apache.maven.plugins maven-shade-plugin - ${version.compiler.plugin} + ${version.shade.plugin} org.kie From e3ad5e163e8f65face0c84d8a2fea3f1ec335b82 Mon Sep 17 00:00:00 2001 From: Bertrand Lorentz Date: Fri, 9 Aug 2024 14:47:03 +0200 Subject: [PATCH 04/22] pom: Ensure kie-maven-plugin compiles using the expected Java version This plugin seems to only use the maven.compiler.source property. --- pom.xml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 54a521c..6e50bc6 100644 --- a/pom.xml +++ b/pom.xml @@ -33,6 +33,7 @@ 11 + ${java.version} ${java.version} ${java.version} @@ -43,7 +44,7 @@ 4.4 3.12.0 7.11.1 - 8.44.0.Final + 8.44.2.Final 3.0.11 2.14.1 4.0.0 From 07e28cab967c8df301f04f1ce60982b5ed49b35b Mon Sep 17 00:00:00 2001 From: Bertrand Lorentz Date: Fri, 9 Aug 2024 17:29:32 +0200 Subject: [PATCH 05/22] schematron: Load more data from the schematron files --- .../domain/schematron/SchematronAssert.java | 9 ++ .../schematron/SchematronDiagnostic.java | 13 +++ .../domain/schematron/SchematronFile.java | 38 ++++++-- .../domain/schematron/SchematronPattern.java | 13 +++ .../domain/schematron/SchematronPhase.java | 25 +++++ .../sdk/analysis/fact/SchematronFileFact.java | 15 +++ .../sdk/analysis/util/SchematronParser.java | 91 ++++++++++++++++--- 7 files changed, 185 insertions(+), 19 deletions(-) create mode 100644 src/main/java/eu/europa/ted/eforms/sdk/analysis/domain/schematron/SchematronDiagnostic.java create mode 100644 src/main/java/eu/europa/ted/eforms/sdk/analysis/domain/schematron/SchematronPattern.java create mode 100644 src/main/java/eu/europa/ted/eforms/sdk/analysis/domain/schematron/SchematronPhase.java diff --git a/src/main/java/eu/europa/ted/eforms/sdk/analysis/domain/schematron/SchematronAssert.java b/src/main/java/eu/europa/ted/eforms/sdk/analysis/domain/schematron/SchematronAssert.java index 276d6da..f2b541d 100644 --- a/src/main/java/eu/europa/ted/eforms/sdk/analysis/domain/schematron/SchematronAssert.java +++ b/src/main/java/eu/europa/ted/eforms/sdk/analysis/domain/schematron/SchematronAssert.java @@ -2,6 +2,7 @@ public class SchematronAssert { private final String id; + private String diagnostics; public SchematronAssert(String id) { this.id = id; @@ -10,4 +11,12 @@ public SchematronAssert(String id) { public String getId() { return id; } + + public String getDiagnostics() { + return diagnostics; + } + + public void setDiagnostics(String diagnostics) { + this.diagnostics = diagnostics; + } } diff --git a/src/main/java/eu/europa/ted/eforms/sdk/analysis/domain/schematron/SchematronDiagnostic.java b/src/main/java/eu/europa/ted/eforms/sdk/analysis/domain/schematron/SchematronDiagnostic.java new file mode 100644 index 0000000..f9ac97d --- /dev/null +++ b/src/main/java/eu/europa/ted/eforms/sdk/analysis/domain/schematron/SchematronDiagnostic.java @@ -0,0 +1,13 @@ +package eu.europa.ted.eforms.sdk.analysis.domain.schematron; + +public class SchematronDiagnostic { + private final String id; + + public SchematronDiagnostic(String id) { + this.id = id; + } + + public String getId() { + return id; + } +} diff --git a/src/main/java/eu/europa/ted/eforms/sdk/analysis/domain/schematron/SchematronFile.java b/src/main/java/eu/europa/ted/eforms/sdk/analysis/domain/schematron/SchematronFile.java index 799beb3..4d209cd 100644 --- a/src/main/java/eu/europa/ted/eforms/sdk/analysis/domain/schematron/SchematronFile.java +++ b/src/main/java/eu/europa/ted/eforms/sdk/analysis/domain/schematron/SchematronFile.java @@ -5,22 +5,48 @@ public class SchematronFile { private final Path path; - private final List asserts; + private List phases; + private List patterns; + private List diagnostics; + private List asserts; public SchematronFile(Path path) { - this(path, null); - } - - public SchematronFile(Path path, List asserts) { this.path = path; - this.asserts = asserts; } public Path getPath() { return path; } + public List getPhases() { + return phases; + } + + public void setPhases(List phases) { + this.phases = phases; + } + + public List getPatterns() { + return patterns; + } + + public void setPatterns(List patterns) { + this.patterns = patterns; + } + + public List getDiagnostics() { + return diagnostics; + } + + public void setDiagnostics(List diagnostics) { + this.diagnostics = diagnostics; + } + public List getAsserts() { return asserts; } + + public void setAsserts(List asserts) { + this.asserts = asserts; + } } diff --git a/src/main/java/eu/europa/ted/eforms/sdk/analysis/domain/schematron/SchematronPattern.java b/src/main/java/eu/europa/ted/eforms/sdk/analysis/domain/schematron/SchematronPattern.java new file mode 100644 index 0000000..58a921c --- /dev/null +++ b/src/main/java/eu/europa/ted/eforms/sdk/analysis/domain/schematron/SchematronPattern.java @@ -0,0 +1,13 @@ +package eu.europa.ted.eforms.sdk.analysis.domain.schematron; + +public class SchematronPattern { + private final String id; + + public SchematronPattern(String id) { + this.id = id; + } + + public String getId() { + return id; + } +} diff --git a/src/main/java/eu/europa/ted/eforms/sdk/analysis/domain/schematron/SchematronPhase.java b/src/main/java/eu/europa/ted/eforms/sdk/analysis/domain/schematron/SchematronPhase.java new file mode 100644 index 0000000..ba9e6cc --- /dev/null +++ b/src/main/java/eu/europa/ted/eforms/sdk/analysis/domain/schematron/SchematronPhase.java @@ -0,0 +1,25 @@ +package eu.europa.ted.eforms.sdk.analysis.domain.schematron; + +import java.util.ArrayList; +import java.util.List; + +public class SchematronPhase { + private final String id; + private final List activePatterns = new ArrayList<>(); + + public SchematronPhase(String id) { + this.id = id; + } + + public String getId() { + return id; + } + + public List getActivePatterns() { + return activePatterns; + } + + public void addActivePattern(String patternId) { + activePatterns.add(patternId); + } +} diff --git a/src/main/java/eu/europa/ted/eforms/sdk/analysis/fact/SchematronFileFact.java b/src/main/java/eu/europa/ted/eforms/sdk/analysis/fact/SchematronFileFact.java index 7ac28ea..76be4ad 100644 --- a/src/main/java/eu/europa/ted/eforms/sdk/analysis/fact/SchematronFileFact.java +++ b/src/main/java/eu/europa/ted/eforms/sdk/analysis/fact/SchematronFileFact.java @@ -6,7 +6,10 @@ import java.util.stream.Collectors; import eu.europa.ted.eforms.sdk.analysis.domain.schematron.SchematronAssert; +import eu.europa.ted.eforms.sdk.analysis.domain.schematron.SchematronDiagnostic; import eu.europa.ted.eforms.sdk.analysis.domain.schematron.SchematronFile; +import eu.europa.ted.eforms.sdk.analysis.domain.schematron.SchematronPattern; +import eu.europa.ted.eforms.sdk.analysis.domain.schematron.SchematronPhase; /** * Represents a complete set of schematron rules. @@ -25,6 +28,18 @@ public List getAsserts() { return schematronFile.getAsserts(); } + public List getDiagnostics() { + return schematronFile.getDiagnostics(); + } + + public List getPhases() { + return schematronFile.getPhases(); + } + + public List getPatterns() { + return schematronFile.getPatterns(); + } + public List getDuplicateAssertIds() { Set set = new HashSet(); return getAsserts().stream().map(SchematronAssert::getId).filter(id -> !set.add(id)) diff --git a/src/main/java/eu/europa/ted/eforms/sdk/analysis/util/SchematronParser.java b/src/main/java/eu/europa/ted/eforms/sdk/analysis/util/SchematronParser.java index 8b88582..1a2cbf9 100644 --- a/src/main/java/eu/europa/ted/eforms/sdk/analysis/util/SchematronParser.java +++ b/src/main/java/eu/europa/ted/eforms/sdk/analysis/util/SchematronParser.java @@ -4,6 +4,7 @@ import java.util.ArrayList; import java.util.List; import java.util.Locale; +import java.util.stream.Collectors; import org.slf4j.Logger; import org.slf4j.LoggerFactory; @@ -15,9 +16,13 @@ import com.helger.xml.microdom.IMicroDocument; import com.helger.xml.microdom.IMicroElement; import com.helger.xml.microdom.IMicroNode; +import com.helger.xml.microdom.serialize.MicroReader; import eu.europa.ted.eforms.sdk.analysis.domain.schematron.SchematronAssert; +import eu.europa.ted.eforms.sdk.analysis.domain.schematron.SchematronDiagnostic; import eu.europa.ted.eforms.sdk.analysis.domain.schematron.SchematronFile; +import eu.europa.ted.eforms.sdk.analysis.domain.schematron.SchematronPattern; +import eu.europa.ted.eforms.sdk.analysis.domain.schematron.SchematronPhase; public class SchematronParser { private static final Logger logger = LoggerFactory.getLogger(SchematronParser.class); @@ -27,32 +32,92 @@ private SchematronParser() {} public static SchematronFile loadSchematronFile(Path schematronFilePath) { logger.debug("Loading Schematron file " + schematronFilePath.toString()); + SchematronFile schematronFile = new SchematronFile(schematronFilePath); + IReadableResource schematron = new FileSystemResource(schematronFilePath); + + final IMicroDocument doc = MicroReader.readMicroXML(schematron); + if (doc == null || doc.getAllChildren() == null) { + logger.error("Schematron file {} could not be loaded as XML", schematronFilePath); + return null; + } + List children = doc.getAllChildrenRecursive(); + if (children == null) { + logger.error("Schematron file {} has unexpected structure", schematronFilePath); + return null; + } + + // Parse phase definitions + List phases = new ArrayList<>(); + children.stream() + .filter(node -> node.isElement() && "phase".equals(node.getNodeName())) + .forEach(node -> { + IMicroElement element = (IMicroElement)node; + String id = element.getAttributeValue("id"); + SchematronPhase phase = new SchematronPhase(id); + List phaseRefs = element.getAllChildren(); + if (phaseRefs == null) { + logger.error("Incorrect definition for phase {}", id); + return; + } + phaseRefs.stream() + .filter(n -> n.isElement() && "active".equals(n.getNodeName())) + .map(n -> ((IMicroElement)n).getAttributeValue("pattern")) + .forEach(s -> phase.addActivePattern(s)); + + phases.add(phase); + }); + + schematronFile.setPhases(phases); + + // Parse list diagnostic definitions + List diagnostics = children.stream() + .filter(node -> node.isElement() && "diagnostic".equals(node.getNodeName())) + .map(n -> ((IMicroElement)n).getAttributeValue("id")) + .map(s -> new SchematronDiagnostic(s)) + .collect(Collectors.toList()); + + schematronFile.setDiagnostics(diagnostics); + // Resolve all included files, so that they also get loaded. - final IMicroDocument doc = SchematronHelper.getWithResolvedSchematronIncludes(schematron, + final IMicroDocument docResolved = SchematronHelper.getWithResolvedSchematronIncludes(schematron, e -> handleError(e, schematronFilePath)); - if (doc == null) { - logger.error("Schematron file {} could not be loaded as XML", schematronFilePath); + if (docResolved == null) { + logger.error("Schematron file {} with resolved includes could not be loaded as XML", + schematronFilePath); return null; } - List asserts = new ArrayList<>(); - List allChildren = doc.getAllChildrenRecursive(); + List allChildren = docResolved.getAllChildrenRecursive(); if (allChildren == null) { logger.error("Schematron file {} does not have the expected content", schematronFilePath); return null; } + + // Parse all patterns + List patterns = allChildren.stream() + .filter(node -> node.isElement() && "pattern".equals(node.getNodeName())) + .map(n -> ((IMicroElement)n).getAttributeValue("id")) + .map(s -> new SchematronPattern(s)) + .collect(Collectors.toList()); - for (IMicroNode node : allChildren) { - if (node != null && node.isElement() && "assert".equals(node.getNodeName())) { - IMicroElement element = (IMicroElement)node; - SchematronAssert schAssert = new SchematronAssert(element.getAttributeValue("id")); - asserts.add(schAssert); - } - } + schematronFile.setPatterns(patterns); + + // Parse all asserts + List asserts = new ArrayList<>(); + allChildren.stream() + .filter(node -> node.isElement() && "assert".equals(node.getNodeName())) + .forEach(n -> { + IMicroElement element = (IMicroElement)n; + String id = element.getAttributeValue("id"); + SchematronAssert schematronAssert = new SchematronAssert(id); + String diag = element.getAttributeValue("diagnostics"); + schematronAssert.setDiagnostics(diag); + asserts.add(schematronAssert); + }); - SchematronFile schematronFile = new SchematronFile(schematronFilePath, asserts); + schematronFile.setAsserts(asserts); return schematronFile; } From ec9288e3c0b0e30f75b80f30f858b40150b16b1c Mon Sep 17 00:00:00 2001 From: Bertrand Lorentz Date: Fri, 9 Aug 2024 17:37:37 +0200 Subject: [PATCH 06/22] Add consistency checks for schematron files (TEDEFO-2768) --- .../sdk/analysis/drools/schematronRules.drl | 25 ++ .../tedefo-2768/invalid/notice-types/1.json | 48 +++ .../tedefo-2768/invalid/notice-types/16.json | 48 +++ .../invalid/notice-types/notice-types.json | 148 ++++++++ .../dynamic/complete-validation.sch | 317 +++++++++++++++++ .../invalid/schematrons/dynamic/config.sch | 5 + .../dynamic/validation-stage-1a.sch | 21 ++ .../dynamic/validation-stage-1b-1.sch | 40 +++ .../dynamic/validation-stage-1b-16.sch | 85 +++++ .../static/complete-validation.sch | 316 +++++++++++++++++ .../static/validation-stage-1a.sch | 21 ++ .../static/validation-stage-1b-1.sch | 40 +++ .../static/validation-stage-1b-16.sch | 85 +++++ .../tedefo-2768/valid/notice-types/1.json | 48 +++ .../tedefo-2768/valid/notice-types/16.json | 48 +++ .../valid/notice-types/notice-types.json | 148 ++++++++ .../dynamic/complete-validation.sch | 318 ++++++++++++++++++ .../valid/schematrons/dynamic/config.sch | 5 + .../dynamic/validation-stage-1a.sch | 21 ++ .../dynamic/validation-stage-1b-1.sch | 40 +++ .../dynamic/validation-stage-1b-16.sch | 85 +++++ .../static/complete-validation.sch | 316 +++++++++++++++++ .../static/validation-stage-1a.sch | 21 ++ .../static/validation-stage-1b-1.sch | 40 +++ .../static/validation-stage-1b-16.sch | 85 +++++ .../sdk/analysis/cucumber/tedefo-2768.feature | 31 ++ 26 files changed, 2405 insertions(+) create mode 100644 src/test/resources/eforms-sdk-tests/tedefo-2768/invalid/notice-types/1.json create mode 100644 src/test/resources/eforms-sdk-tests/tedefo-2768/invalid/notice-types/16.json create mode 100644 src/test/resources/eforms-sdk-tests/tedefo-2768/invalid/notice-types/notice-types.json create mode 100644 src/test/resources/eforms-sdk-tests/tedefo-2768/invalid/schematrons/dynamic/complete-validation.sch create mode 100644 src/test/resources/eforms-sdk-tests/tedefo-2768/invalid/schematrons/dynamic/config.sch create mode 100644 src/test/resources/eforms-sdk-tests/tedefo-2768/invalid/schematrons/dynamic/validation-stage-1a.sch create mode 100644 src/test/resources/eforms-sdk-tests/tedefo-2768/invalid/schematrons/dynamic/validation-stage-1b-1.sch create mode 100644 src/test/resources/eforms-sdk-tests/tedefo-2768/invalid/schematrons/dynamic/validation-stage-1b-16.sch create mode 100644 src/test/resources/eforms-sdk-tests/tedefo-2768/invalid/schematrons/static/complete-validation.sch create mode 100644 src/test/resources/eforms-sdk-tests/tedefo-2768/invalid/schematrons/static/validation-stage-1a.sch create mode 100644 src/test/resources/eforms-sdk-tests/tedefo-2768/invalid/schematrons/static/validation-stage-1b-1.sch create mode 100644 src/test/resources/eforms-sdk-tests/tedefo-2768/invalid/schematrons/static/validation-stage-1b-16.sch create mode 100644 src/test/resources/eforms-sdk-tests/tedefo-2768/valid/notice-types/1.json create mode 100644 src/test/resources/eforms-sdk-tests/tedefo-2768/valid/notice-types/16.json create mode 100644 src/test/resources/eforms-sdk-tests/tedefo-2768/valid/notice-types/notice-types.json create mode 100644 src/test/resources/eforms-sdk-tests/tedefo-2768/valid/schematrons/dynamic/complete-validation.sch create mode 100644 src/test/resources/eforms-sdk-tests/tedefo-2768/valid/schematrons/dynamic/config.sch create mode 100644 src/test/resources/eforms-sdk-tests/tedefo-2768/valid/schematrons/dynamic/validation-stage-1a.sch create mode 100644 src/test/resources/eforms-sdk-tests/tedefo-2768/valid/schematrons/dynamic/validation-stage-1b-1.sch create mode 100644 src/test/resources/eforms-sdk-tests/tedefo-2768/valid/schematrons/dynamic/validation-stage-1b-16.sch create mode 100644 src/test/resources/eforms-sdk-tests/tedefo-2768/valid/schematrons/static/complete-validation.sch create mode 100644 src/test/resources/eforms-sdk-tests/tedefo-2768/valid/schematrons/static/validation-stage-1a.sch create mode 100644 src/test/resources/eforms-sdk-tests/tedefo-2768/valid/schematrons/static/validation-stage-1b-1.sch create mode 100644 src/test/resources/eforms-sdk-tests/tedefo-2768/valid/schematrons/static/validation-stage-1b-16.sch create mode 100644 src/test/resources/eu/europa/ted/eforms/sdk/analysis/cucumber/tedefo-2768.feature diff --git a/src/main/resources/eu/europa/ted/eforms/sdk/analysis/drools/schematronRules.drl b/src/main/resources/eu/europa/ted/eforms/sdk/analysis/drools/schematronRules.drl index f8a6af4..900e180 100644 --- a/src/main/resources/eu/europa/ted/eforms/sdk/analysis/drools/schematronRules.drl +++ b/src/main/resources/eu/europa/ted/eforms/sdk/analysis/drools/schematronRules.drl @@ -15,3 +15,28 @@ when then results.add(new ValidationResult($sch, "Schematron contains duplicate assert ids: " + $duplicates, ValidationStatusEnum.ERROR)); end + +rule "All expected phases are present" +when + /schematrons[ $sch: this, $schId: id ]; + /noticeTypes[ $expected: id ] + not (exists /schematrons[ id == $schId ]/phases[ id == "eforms-" + $expected ]) +then + results.add(new ValidationResult($sch, "Schematron is missing phase for: " + $expected, ValidationStatusEnum.ERROR)); +end + +rule "Every pattern is part of at least one phase" +when + /schematrons[ $sch: this, $schId: id ]/patterns[ $patternId: id ] + not (exists /schematrons[ id == $schId ]/phases[ activePatterns contains $patternId ]) +then + results.add(new ValidationResult($sch, "Schematron has pattern that is not part of any phase: " + $patternId, ValidationStatusEnum.ERROR)); +end + +rule "Every assert diagnostics is defined in the schematron file" +when + /schematrons[ $sch: this, $schId: id ]/asserts[ $diagnosticId: diagnostics, diagnostics != null ] + not (exists /schematrons[ id == $schId ]/diagnostics[ id == $diagnosticId ]) +then + results.add(new ValidationResult($sch, "Schematron is missing diagnostic definitions for: " + $diagnosticId, ValidationStatusEnum.ERROR)); +end diff --git a/src/test/resources/eforms-sdk-tests/tedefo-2768/invalid/notice-types/1.json b/src/test/resources/eforms-sdk-tests/tedefo-2768/invalid/notice-types/1.json new file mode 100644 index 0000000..f4a8a55 --- /dev/null +++ b/src/test/resources/eforms-sdk-tests/tedefo-2768/invalid/notice-types/1.json @@ -0,0 +1,48 @@ +{ + "ublVersion" : "2.3", + "sdkVersion" : "1.10.0", + "metadataDatabase" : { + "version" : "1.10.0", + "createdOn" : "2023-11-15T14:00:00" + }, + "noticeId" : "1", + "metadata" : [ { + "id" : "BT-02-notice", + "contentType" : "field", + "displayType" : "COMBOBOX", + "description" : "Notice Type", + "_label" : "field|name|BT-02-notice", + "readOnly" : true + } ], + "content" : [ { + "id" : "GR-Buyer", + "contentType" : "group", + "displayType" : "SECTION", + "description" : "Contracting Party and Provider related Information", + "_label" : "group|name|GR-Buyer", + "content" : [ { + "id" : "GR-ContractingAuthority", + "contentType" : "group", + "nodeId" : "ND-ContractingParty", + "displayType" : "GROUP", + "description" : "Contracting Party related Information (URL, Legal Type, Contracting Type, Activity, …)", + "_label" : "group|name|ND-ContractingParty", + "_repeatable" : true, + "content" : [ { + "id" : "GR-ContractingAuthority-Buyer", + "contentType" : "group", + "displayType" : "GROUP", + "description" : "Contracting Party related Information (URL, Legal Type, Contracting Type, Activity, …)", + "_label" : "group|name|GR-ContractingAuthority-Buyer", + "content" : [ { + "id" : "OPT-300-Procedure-Buyer", + "contentType" : "field", + "displayType" : "COMBOBOX", + "description" : "Buyer Technical Identifier Reference", + "_label" : "field|name|OPT-300-Procedure-Buyer", + "_idSchemes" : [ "ORG" ] + } ] + } ] + } ] + } ] +} \ No newline at end of file diff --git a/src/test/resources/eforms-sdk-tests/tedefo-2768/invalid/notice-types/16.json b/src/test/resources/eforms-sdk-tests/tedefo-2768/invalid/notice-types/16.json new file mode 100644 index 0000000..d5a465c --- /dev/null +++ b/src/test/resources/eforms-sdk-tests/tedefo-2768/invalid/notice-types/16.json @@ -0,0 +1,48 @@ +{ + "ublVersion" : "2.3", + "sdkVersion" : "1.10.0", + "metadataDatabase" : { + "version" : "1.10.0", + "createdOn" : "2023-11-15T14:00:00" + }, + "noticeId" : "16", + "metadata" : [ { + "id" : "BT-02-notice", + "contentType" : "field", + "displayType" : "COMBOBOX", + "description" : "Notice Type", + "_label" : "field|name|BT-02-notice", + "readOnly" : true + } ], + "content" : [ { + "id" : "GR-Buyer", + "contentType" : "group", + "displayType" : "SECTION", + "description" : "Contracting Party and Provider related Information", + "_label" : "group|name|GR-Buyer", + "content" : [ { + "id" : "GR-ContractingAuthority", + "contentType" : "group", + "nodeId" : "ND-ContractingParty", + "displayType" : "GROUP", + "description" : "Contracting Party related Information (URL, Legal Type, Contracting Type, Activity, …)", + "_label" : "group|name|ND-ContractingParty", + "_repeatable" : true, + "content" : [ { + "id" : "GR-ContractingAuthority-Buyer", + "contentType" : "group", + "displayType" : "GROUP", + "description" : "Contracting Party related Information (URL, Legal Type, Contracting Type, Activity, …)", + "_label" : "group|name|GR-ContractingAuthority-Buyer", + "content" : [ { + "id" : "OPT-300-Procedure-Buyer", + "contentType" : "field", + "displayType" : "COMBOBOX", + "description" : "Buyer Technical Identifier Reference", + "_label" : "field|name|OPT-300-Procedure-Buyer", + "_idSchemes" : [ "ORG" ] + } ] + } ] + } ] + } ] +} \ No newline at end of file diff --git a/src/test/resources/eforms-sdk-tests/tedefo-2768/invalid/notice-types/notice-types.json b/src/test/resources/eforms-sdk-tests/tedefo-2768/invalid/notice-types/notice-types.json new file mode 100644 index 0000000..13d7343 --- /dev/null +++ b/src/test/resources/eforms-sdk-tests/tedefo-2768/invalid/notice-types/notice-types.json @@ -0,0 +1,148 @@ +{ + "ublVersion" : "2.3", + "sdkVersion" : "1.10.0", + "metadataDatabase" : { + "version" : "1.10.0", + "createdOn" : "2023-11-15T14:00:00" + }, + "noticeSubTypes" : [ { + "documentType" : "PIN", + "legalBasis" : "32014L0024", + "formType" : "planning", + "type" : "pin-buyer", + "description" : "Notice of the publication of a prior information notice on a buyer profile - general directive", + "subTypeId" : "1", + "_label" : "notice|name|1", + "viewTemplateIds" : [ "1", "summary" ] + }, { + "documentType" : "CN", + "legalBasis" : "32014L0024", + "formType" : "competition", + "type" : "cn-standard", + "description" : "Contract notice – general directive, standard regime", + "subTypeId" : "16", + "_label" : "notice|name|16", + "viewTemplateIds" : [ "16", "summary" ] + } ], + "documentTypes" : [ { + "id" : "BRIN", + "namespace" : "http://data.europa.eu/p27/eforms-business-registration-information-notice/1", + "rootElement" : "BusinessRegistrationInformationNotice", + "schemaLocation" : "schemas/maindoc/EFORMS-BusinessRegistrationInformationNotice.xsd", + "additionalNamespaces" : [ { + "prefix" : "cac", + "uri" : "urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-2", + "schemaLocation" : "schemas/common/UBL-CommonAggregateComponents-2.3.xsd" + }, { + "prefix" : "cbc", + "uri" : "urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2", + "schemaLocation" : "schemas/common/UBL-CommonBasicComponents-2.3.xsd" + }, { + "prefix" : "ext", + "uri" : "urn:oasis:names:specification:ubl:schema:xsd:CommonExtensionComponents-2", + "schemaLocation" : "schemas/common/UBL-CommonExtensionComponents-2.3.xsd" + }, { + "prefix" : "efext", + "uri" : "http://data.europa.eu/p27/eforms-ubl-extensions/1", + "schemaLocation" : "schemas/common/EFORMS-ExtensionApex-2.3.xsd" + }, { + "prefix" : "efac", + "uri" : "http://data.europa.eu/p27/eforms-ubl-extension-aggregate-components/1", + "schemaLocation" : "schemas/common/EFORMS-ExtensionAggregateComponents-2.3.xsd" + }, { + "prefix" : "efbc", + "uri" : "http://data.europa.eu/p27/eforms-ubl-extension-basic-components/1", + "schemaLocation" : "schemas/common/EFORMS-ExtensionBasicComponents-2.3.xsd" + } ] + }, { + "id" : "CAN", + "namespace" : "urn:oasis:names:specification:ubl:schema:xsd:ContractAwardNotice-2", + "rootElement" : "ContractAwardNotice", + "schemaLocation" : "schemas/maindoc/UBL-ContractAwardNotice-2.3.xsd", + "additionalNamespaces" : [ { + "prefix" : "cac", + "uri" : "urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-2", + "schemaLocation" : "schemas/common/UBL-CommonAggregateComponents-2.3.xsd" + }, { + "prefix" : "cbc", + "uri" : "urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2", + "schemaLocation" : "schemas/common/UBL-CommonBasicComponents-2.3.xsd" + }, { + "prefix" : "ext", + "uri" : "urn:oasis:names:specification:ubl:schema:xsd:CommonExtensionComponents-2", + "schemaLocation" : "schemas/common/UBL-CommonExtensionComponents-2.3.xsd" + }, { + "prefix" : "efext", + "uri" : "http://data.europa.eu/p27/eforms-ubl-extensions/1", + "schemaLocation" : "schemas/common/EFORMS-ExtensionApex-2.3.xsd" + }, { + "prefix" : "efac", + "uri" : "http://data.europa.eu/p27/eforms-ubl-extension-aggregate-components/1", + "schemaLocation" : "schemas/common/EFORMS-ExtensionAggregateComponents-2.3.xsd" + }, { + "prefix" : "efbc", + "uri" : "http://data.europa.eu/p27/eforms-ubl-extension-basic-components/1", + "schemaLocation" : "schemas/common/EFORMS-ExtensionBasicComponents-2.3.xsd" + } ] + }, { + "id" : "CN", + "namespace" : "urn:oasis:names:specification:ubl:schema:xsd:ContractNotice-2", + "rootElement" : "ContractNotice", + "schemaLocation" : "schemas/maindoc/UBL-ContractNotice-2.3.xsd", + "additionalNamespaces" : [ { + "prefix" : "cac", + "uri" : "urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-2", + "schemaLocation" : "schemas/common/UBL-CommonAggregateComponents-2.3.xsd" + }, { + "prefix" : "cbc", + "uri" : "urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2", + "schemaLocation" : "schemas/common/UBL-CommonBasicComponents-2.3.xsd" + }, { + "prefix" : "ext", + "uri" : "urn:oasis:names:specification:ubl:schema:xsd:CommonExtensionComponents-2", + "schemaLocation" : "schemas/common/UBL-CommonExtensionComponents-2.3.xsd" + }, { + "prefix" : "efext", + "uri" : "http://data.europa.eu/p27/eforms-ubl-extensions/1", + "schemaLocation" : "schemas/common/EFORMS-ExtensionApex-2.3.xsd" + }, { + "prefix" : "efac", + "uri" : "http://data.europa.eu/p27/eforms-ubl-extension-aggregate-components/1", + "schemaLocation" : "schemas/common/EFORMS-ExtensionAggregateComponents-2.3.xsd" + }, { + "prefix" : "efbc", + "uri" : "http://data.europa.eu/p27/eforms-ubl-extension-basic-components/1", + "schemaLocation" : "schemas/common/EFORMS-ExtensionBasicComponents-2.3.xsd" + } ] + }, { + "id" : "PIN", + "namespace" : "urn:oasis:names:specification:ubl:schema:xsd:PriorInformationNotice-2", + "rootElement" : "PriorInformationNotice", + "schemaLocation" : "schemas/maindoc/UBL-PriorInformationNotice-2.3.xsd", + "additionalNamespaces" : [ { + "prefix" : "cac", + "uri" : "urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-2", + "schemaLocation" : "schemas/common/UBL-CommonAggregateComponents-2.3.xsd" + }, { + "prefix" : "cbc", + "uri" : "urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2", + "schemaLocation" : "schemas/common/UBL-CommonBasicComponents-2.3.xsd" + }, { + "prefix" : "ext", + "uri" : "urn:oasis:names:specification:ubl:schema:xsd:CommonExtensionComponents-2", + "schemaLocation" : "schemas/common/UBL-CommonExtensionComponents-2.3.xsd" + }, { + "prefix" : "efext", + "uri" : "http://data.europa.eu/p27/eforms-ubl-extensions/1", + "schemaLocation" : "schemas/common/EFORMS-ExtensionApex-2.3.xsd" + }, { + "prefix" : "efac", + "uri" : "http://data.europa.eu/p27/eforms-ubl-extension-aggregate-components/1", + "schemaLocation" : "schemas/common/EFORMS-ExtensionAggregateComponents-2.3.xsd" + }, { + "prefix" : "efbc", + "uri" : "http://data.europa.eu/p27/eforms-ubl-extension-basic-components/1", + "schemaLocation" : "schemas/common/EFORMS-ExtensionBasicComponents-2.3.xsd" + } ] + } ] +} \ No newline at end of file diff --git a/src/test/resources/eforms-sdk-tests/tedefo-2768/invalid/schematrons/dynamic/complete-validation.sch b/src/test/resources/eforms-sdk-tests/tedefo-2768/invalid/schematrons/dynamic/complete-validation.sch new file mode 100644 index 0000000..01ac52a --- /dev/null +++ b/src/test/resources/eforms-sdk-tests/tedefo-2768/invalid/schematrons/dynamic/complete-validation.sch @@ -0,0 +1,317 @@ + + + + + eForms schematron rules + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + cac:ProcessJustification + cac:AwardingTerms + cac:TechnicalCommitteePerson/cbc:FamilyName + cac:PostalAddress + cac:Contact + cac:BusinessParty + cac:PartyLegalEntity[cbc:CompanyID/@schemeName = 'EU']/cbc:CompanyID + cac:PartyLegalEntity[cbc:CompanyID/@schemeName = 'national']/cbc:CompanyID + cac:Party + cac:ServiceProviderParty/cac:Party/cac:PartyIdentification/cbc:ID + efac:Change + efac:Company + cac:PostalAddress/cbc:Department + cac:PartyLegalEntity/cbc:CompanyID + cac:Contact/cbc:Name + cac:Contact/cbc:Telephone + cac:Contact/cbc:ElectronicMail + cac:PostalAddress/cbc:CountrySubentityCode + cac:PostalAddress/cbc:StreetName + cac:PostalAddress/cbc:AdditionalStreetName + cac:PostalAddress/cac:AddressLine/cbc:Line + cac:PostalAddress/cbc:PostalZone + cac:PostalAddress/cbc:CityName + cac:PostalAddress/cac:Country/cbc:IdentificationCode + cac:Contact/cbc:Telefax + efac:ConcessionRevenue + efac:Funding + efac:ContractModification + efac:Change/efac:ChangedSection/efbc:ChangedSectionIdentifier + cac:ContractingParty + ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension/efac:FieldsPrivacy + cac:SpecificTendererRequirement + cac:ContractExecutionRequirement + efac:DurationJustification + cac:FrameworkAgreement + efac:Funding + cac:AdditionalDocumentReference + cac:LotsGroup + cac:ProcurementProjectLotReference/cbc:ID[@schemeName='Lot'] + efac:InterestExpressionReceptionPeriod + cac:PartyLegalEntity + cac:AwardingCriterion + cac:SubordinateAwardingCriterion/cbc:AwardingCriterionTypeCode[@listName='award-criterion-type'] + efac:FieldsPrivacy + ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension/efac:FieldsPrivacy + efac:AwardCriterionParameter[efbc:ParameterCode/@listName='number-fixed']/efbc:ParameterNumeric + efac:AwardCriterionParameter[efbc:ParameterCode/@listName='number-threshold']/efbc:ParameterNumeric + efac:AwardCriterionParameter[efbc:ParameterCode/@listName='number-weight']/efbc:ParameterNumeric + efac:FieldsPrivacy + cac:LotDistribution + cac:LotsGroup/cbc:LotsGroupID + cac:PlannedPeriod + cac:EmploymentLegislationDocumentReference + cac:EnvironmentalLegislationDocumentReference + cac:FiscalLegislationDocumentReference + cac:Address/cbc:CountrySubentityCode + cac:Address/cbc:StreetName + cac:Address/cbc:AdditionalStreetName + cac:Address/cac:AddressLine/cbc:Line + cac:Address/cbc:PostalZone + cac:Address/cbc:CityName + cac:Address/cac:Country/cbc:IdentificationCode + cac:Address/cbc:Region + cac:NoticeDocumentReference + cac:CallForTendersDocumentReference + ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension/efac:OfficialLanguages/cac:Language/cbc:ID + ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension/efac:NonOfficialLanguages/cac:Language/cbc:ID + cac:ProcurementProject + cac:ProcurementAdditionalType[cbc:ProcurementTypeCode/@listName='strategic-procurement']/cbc:ProcurementTypeCode + cac:MainCommodityClassification/cbc:ItemClassificationCode + cac:AdditionalCommodityClassification/cbc:ItemClassificationCode + cac:RequestedTenderTotal/ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension/efbc:FrameworkMaximumAmount + cac:ProcurementAdditionalType[cbc:ProcurementTypeCode/@listName='contract-nature']/cbc:ProcurementTypeCode + cac:ProcurementAdditionalType[cbc:ProcurementTypeCode/@listName='accessibility']/cbc:ProcurementTypeCode + cac:ProcurementAdditionalType[cbc:ProcurementTypeCode/@listName='environmental-impact']/cbc:ProcurementTypeCode + cac:ProcurementAdditionalType[cbc:ProcurementTypeCode/@listName='social-objective']/cbc:ProcurementTypeCode + cac:ProcurementAdditionalType[cbc:ProcurementTypeCode/@listName='innovative-acquisition']/cbc:ProcurementTypeCode + cac:ProcurementAdditionalType[cbc:ProcurementTypeCode/@listName='gpp-criteria']/cbc:ProcurementTypeCode + cac:TendererQualificationRequest + cac:SpecificTendererRequirement[cbc:TendererRequirementTypeCode/@listName='reserved-procurement']/cbc:TendererRequirementTypeCode + efac:LotResult + efac:FrameworkAgreementValues + efac:AppealRequestsStatistics[efbc:StatisticsCode/@listName='irregularity-type']/efbc:StatisticsCode + efac:AppealRequestsStatistics[efbc:StatisticsCode/@listName='review-type']/efbc:StatisticsCode + efac:ReceivedSubmissionsStatistics/efbc:StatisticsNumeric + efac:ReceivedSubmissionsStatistics/efbc:StatisticsCode + cac:FinancingParty/cac:PartyIdentification/cbc:ID + cac:PayerParty/cac:PartyIdentification/cbc:ID + efac:SettledContract/cbc:ID + efac:LotTender/cbc:ID + cac:AppealTerms + cac:PresentationPeriod/cbc:Description + efac:LotTender + efac:Origin + efac:Origin/efbc:AreaCode + efac:AggregatedAmounts/cbc:PaidAmount + efac:AggregatedAmounts/efbc:PaidAmountDescription + efac:AggregatedAmounts/efbc:PenaltiesAmount + efac:ContractTerm[not(efbc:TermCode/text()='all-rev-tic')][efbc:TermCode/@listName='contract-detail']/efbc:TermCode + efac:ContractTerm[efbc:TermCode/@listName='rewards-penalties']/efbc:TermCode + cac:TenderingProcess + ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension + cac:NoticeDocumentReference/cbc:ReferencedDocumentInternalAddress + cac:ParticipationRequestReceptionPeriod/cbc:EndDate + cac:ParticipationRequestReceptionPeriod/cbc:EndTime + cac:TenderSubmissionDeadlinePeriod/cbc:EndDate + cac:TenderSubmissionDeadlinePeriod/cbc:EndTime + cac:OpenTenderEvent/cbc:OccurrenceDate + cac:AdditionalInformationRequestPeriod/cbc:EndDate + cac:AdditionalInformationRequestPeriod/cbc:EndTime + cac:ContractingSystem[cbc:ContractingSystemTypeCode/@listName='framework-agreement']/cbc:ContractingSystemTypeCode + cac:ContractingSystem[cbc:ContractingSystemTypeCode/@listName='dps-usage']/cbc:ContractingSystemTypeCode + cac:TenderingTerms + cac:TenderRecipientParty/cbc:EndpointID + cac:AllowedSubcontractTerms[cbc:SubcontractingConditionsCode/@listName='subcontracting-obligation']/cbc:SubcontractingConditionsCode + cac:ContractExecutionRequirement[cbc:ExecutionRequirementCode/@listName='reserved-execution']/cbc:ExecutionRequirementCode + cac:ContractExecutionRequirement[cbc:ExecutionRequirementCode/@listName='einvoicing']/cbc:ExecutionRequirementCode + cac:ContractExecutionRequirement[cbc:ExecutionRequirementCode/@listName='esignature-submission']/cbc:ExecutionRequirementCode + cac:RequiredFinancialGuarantee/cbc:Description + cac:RequiredFinancialGuarantee/cbc:GuaranteeTypeCode[@listName='tender-guarantee-required'] + cac:TendererQualificationRequest[not(cac:SpecificTendererRequirement)]/cbc:CompanyLegalForm + cac:TendererQualificationRequest[not(cac:SpecificTendererRequirement)]/cbc:CompanyLegalFormCode + cac:ContractExecutionRequirement[cbc:ExecutionRequirementCode/@listName='ecatalog-submission']/cbc:ExecutionRequirementCode + cac:ContractExecutionRequirement[cbc:ExecutionRequirementCode/@listName='nda']/cbc:ExecutionRequirementCode + cac:Language/cbc:ID + cac:ContractExecutionRequirement[cbc:ExecutionRequirementCode/@listName='conditions']/cbc:ExecutionRequirementCode + cac:ContractExecutionRequirement[cbc:ExecutionRequirementCode/@listName='customer-service']/cbc:ExecutionRequirementCode + cac:TenderRecipientParty/cac:PartyIdentification/cbc:ID + cac:RequestedTenderTotal + cac:SubordinateAwardingCriterion/cbc:AwardingCriterionTypeCode[@listName='award-criterion-type'] + efac:FieldsPrivacy + ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension/efac:FieldsPrivacy + efac:AwardCriterionParameter[efbc:ParameterCode/@listName='number-fixed']/efbc:ParameterNumeric + efac:AwardCriterionParameter[efbc:ParameterCode/@listName='number-threshold']/efbc:ParameterNumeric + efac:AwardCriterionParameter[efbc:ParameterCode/@listName='number-weight']/efbc:ParameterNumeric + efac:FieldsPrivacy + cac:TenderingTerms/cac:AwardingTerms + cac:TenderingProcess/cac:FrameworkAgreement + cac:RequestedTenderTotal/ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension/efbc:FrameworkMaximumAmount + cac:RequestedTenderTotal + efac:Change + efac:ChangeReason + efac:ChangedSection + cac:ProcessJustification + ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension + efac:Funding/efbc:FinancingIdentifier + efac:TenderSubcontractingRequirements/efbc:TenderSubcontractingRequirementsCode + efac:Funding/cbc:FundingProgramCode + efac:SelectionCriteria/cbc:CriterionTypeCode[@listName='selection-criterion'] + efac:DecisionReason/efac:FieldsPrivacy + efac:FieldsPrivacy + efac:NoticeResult + efac:GroupFramework + efac:NoticePurpose + cac:ContractExtension + cac:Renewal/cac:Period/cbc:Description + efac:Organization + efac:TouchPoint/cac:PartyIdentification/cbc:ID + efac:UltimateBeneficialOwner/cbc:ID + efac:Organizations + efac:UltimateBeneficialOwner/cbc:ID + efac:ContractTerm + efac:AnswerReceptionPeriod + cac:ProcurementProjectLot[cbc:ID/@schemeName='Part'] + cac:EmploymentLegislationDocumentReference + cac:EnvironmentalLegislationDocumentReference + cac:FiscalLegislationDocumentReference + cac:Address/cbc:CountrySubentityCode + cac:Address/cbc:StreetName + cac:Address/cbc:AdditionalStreetName + cac:Address/cac:AddressLine/cbc:Line + cac:Address/cbc:PostalZone + cac:Address/cbc:CityName + cac:Address/cac:Country/cbc:IdentificationCode + cac:Address/cbc:Region + ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension/efac:OfficialLanguages/cac:Language/cbc:ID + ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension/efac:NonOfficialLanguages/cac:Language/cbc:ID + cac:ProcurementProject + cac:MainCommodityClassification/cbc:ItemClassificationCode + cac:AdditionalCommodityClassification/cbc:ItemClassificationCode + cac:ProcurementAdditionalType[cbc:ProcurementTypeCode/@listName='contract-nature']/cbc:ProcurementTypeCode + cac:SpecificTendererRequirement[cbc:TendererRequirementTypeCode/@listName='reserved-procurement']/cbc:TendererRequirementTypeCode + cac:AppealTerms + cac:NoticeDocumentReference/cbc:ReferencedDocumentInternalAddress + cac:AdditionalInformationRequestPeriod/cbc:EndDate + cac:AdditionalInformationRequestPeriod/cbc:EndTime + cac:ContractingSystem[cbc:ContractingSystemTypeCode/@listName='framework-agreement']/cbc:ContractingSystemTypeCode + cac:ContractingSystem[cbc:ContractingSystemTypeCode/@listName='dps-usage']/cbc:ContractingSystemTypeCode + cac:TenderingTerms + cac:ContractExecutionRequirement[cbc:ExecutionRequirementCode/@listName='reserved-execution']/cbc:ExecutionRequirementCode + cac:EconomicOperatorShortList + cac:PreSelectedParty/cac:PartyName/cbc:Name + cac:PaymentTerms + cac:PostAwardProcess + cac:Prize + ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension/efac:FieldsPrivacy + cac:RealizedLocation + cac:ProcurementProject + cac:MainCommodityClassification/cbc:ItemClassificationCode + cac:AdditionalCommodityClassification/cbc:ItemClassificationCode + cac:RequestedTenderTotal/ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension/efbc:FrameworkMaximumAmount + cac:ProcurementAdditionalType[cbc:ProcurementTypeCode/@listName='contract-nature']/cbc:ProcurementTypeCode + cac:ProcurementAdditionalType[cbc:ProcurementTypeCode/@listName='transport-service']/cbc:ProcurementTypeCode + cac:TenderingProcess + cac:NoticeDocumentReference/cbc:ID + cac:TenderingTerms + cac:ProcurementLegislationDocumentReference[not(cbc:ID/text()=('CrossBorderLaw','LocalLegalBasis'))]/cbc:ID + cac:ProcurementLegislationDocumentReference[cbc:ID/text()='LocalLegalBasis']/cbc:ID + cac:ProcurementLegislationDocumentReference[cbc:ID/text()='CrossBorderLaw']/cbc:ID + ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension/efac:FieldsPrivacy + cac:RequestedTenderTotal + cac:OpenTenderEvent + cac:OccurenceLocation/cbc:Description + efac:ReceivedSubmissionsStatistics + efac:AppealsInformation + efac:AppealRequestsStatistics + efac:AppealedItem/cbc:ID + efac:AppealDecision/efbc:DecisionTypeCode + efac:AppealIrregularity/efbc:IrregularityTypeCode + efac:AppealRemedy/efbc:RemedyTypeCode + efac:AppealProcessingParty/efbc:AppealProcessingPartyTypeCode + efac:AppealingParty/efbc:AppealingPartyTypeCode + efac:AppealProcessingParty/efbc:AppealProcessingPartyTypeDescription + efac:AppealProcessingParty/cac:Party/cac:PartyIdentification/cbc:ID + efac:AppealingParty/cac:Party/cac:PartyIdentification/cbc:ID + ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension + efac:Publication/efbc:NoticePublicationID[@schemeName='ojs-notice-id'] + efac:Publication/efbc:GazetteID[@schemeName='ojs-id'] + efac:Publication/efbc:PublicationDate + cac:BusinessCapability/cbc:CapabilityTypeCode + cac:ContractingParty/cac:Party/cac:PartyIdentification/cbc:ID + cac:EconomicOperatorShortList + efac:CriterionParameter + cac:SecurityClearanceTerm + efac:SelectionCriteria + efac:CriterionParameter[efbc:ParameterCode/@listName='number-threshold']/efbc:ParameterNumeric + efac:CriterionParameter[efbc:ParameterCode/@listName='number-weight']/efbc:ParameterNumeric + cac:SenderParty/cac:Contact + efac:SettledContract + efac:LotTender/cbc:ID + efac:Funding/efbc:FinancingIdentifier + efac:Funding/cbc:FundingProgramCode + cac:SignatoryParty/cac:PartyIdentification/cbc:ID + efac:StrategicProcurement + efac:StrategicProcurement + efac:MainContractor/cbc:ID + efac:SubcontractingTerm + cac:AllowedSubcontractTerms + cac:TendererQualificationRequest + efac:Tenderer/cbc:ID + efac:SubContractor/cbc:ID + cac:PostalAddress/cbc:Department + cac:Contact/cbc:Name + cac:Contact/cbc:Telephone + cac:Contact/cbc:ElectronicMail + cac:PostalAddress/cbc:CountrySubentityCode + cac:PostalAddress/cbc:StreetName + cac:PostalAddress/cbc:AdditionalStreetName + cac:PostalAddress/cac:AddressLine/cbc:Line + cac:PostalAddress/cbc:PostalZone + cac:PostalAddress/cbc:CityName + cac:PostalAddress/cac:Country/cbc:IdentificationCode + cac:Contact/cbc:Telefax + cac:Contact/cbc:Telephone + cac:Contact/cbc:ElectronicMail + cac:ResidenceAddress/cbc:CountrySubentityCode + cac:ResidenceAddress/cbc:StreetName + cac:ResidenceAddress/cbc:AdditionalStreetName + cac:ResidenceAddress/cac:AddressLine/cbc:Line + cac:ResidenceAddress/cbc:PostalZone + cac:ResidenceAddress/cbc:CityName + cac:ResidenceAddress/cac:Country/cbc:IdentificationCode + efac:Nationality/cbc:NationalityID + cac:Contact/cbc:Telefax + efac:FieldsPrivacy + + \ No newline at end of file diff --git a/src/test/resources/eforms-sdk-tests/tedefo-2768/invalid/schematrons/dynamic/config.sch b/src/test/resources/eforms-sdk-tests/tedefo-2768/invalid/schematrons/dynamic/config.sch new file mode 100644 index 0000000..bb6e87b --- /dev/null +++ b/src/test/resources/eforms-sdk-tests/tedefo-2768/invalid/schematrons/dynamic/config.sch @@ -0,0 +1,5 @@ + + + diff --git a/src/test/resources/eforms-sdk-tests/tedefo-2768/invalid/schematrons/dynamic/validation-stage-1a.sch b/src/test/resources/eforms-sdk-tests/tedefo-2768/invalid/schematrons/dynamic/validation-stage-1a.sch new file mode 100644 index 0000000..9ab9877 --- /dev/null +++ b/src/test/resources/eforms-sdk-tests/tedefo-2768/invalid/schematrons/dynamic/validation-stage-1a.sch @@ -0,0 +1,21 @@ + + + + + rule|text|P-0001 + + + rule|text|P-0002 + + + + + rule|text|P-0004 + + + + + rule|text|P-0005 + + + diff --git a/src/test/resources/eforms-sdk-tests/tedefo-2768/invalid/schematrons/dynamic/validation-stage-1b-1.sch b/src/test/resources/eforms-sdk-tests/tedefo-2768/invalid/schematrons/dynamic/validation-stage-1b-1.sch new file mode 100644 index 0000000..2ea90d9 --- /dev/null +++ b/src/test/resources/eforms-sdk-tests/tedefo-2768/invalid/schematrons/dynamic/validation-stage-1b-1.sch @@ -0,0 +1,40 @@ + + + + + rule|text|ND-BusinessParty-1 + rule|text|ND-ContractingParty-1 + rule|text|ND-GazetteReference-1 + rule|text|ND-OperationType-1 + rule|text|ND-Part-1 + rule|text|ND-ProcedureProcurementScope-1 + rule|text|ND-ProcedureTenderingProcess-1 + rule|text|ND-RootExtension-1 + rule|text|ND-SenderContact-1 + + + rule|text|ND-Buyer-1 + + + rule|text|ND-ProcedureValueEstimate-1 + + + rule|text|ND-LotDistribution-1 + rule|text|ND-TendererQualificationRequest-1 + + + rule|text|ND-CrossBorderLawUnpublish-1 + + + rule|text|ND-ContractModification-1 + rule|text|ND-NoticeResult-1 + rule|text|ND-Organizations-1 + rule|text|ND-ReviewRequests-1 + + + rule|text|ND-Organization-1 + + + rule|text|ND-Company-1 + + diff --git a/src/test/resources/eforms-sdk-tests/tedefo-2768/invalid/schematrons/dynamic/validation-stage-1b-16.sch b/src/test/resources/eforms-sdk-tests/tedefo-2768/invalid/schematrons/dynamic/validation-stage-1b-16.sch new file mode 100644 index 0000000..67d8951 --- /dev/null +++ b/src/test/resources/eforms-sdk-tests/tedefo-2768/invalid/schematrons/dynamic/validation-stage-1b-16.sch @@ -0,0 +1,85 @@ + + + + + rule|text|ND-BusinessParty-16 + rule|text|ND-ContractingParty-16 + rule|text|ND-GazetteReference-16 + rule|text|ND-OperationType-16 + rule|text|ND-Part-16 + rule|text|ND-ProcedureProcurementScope-16 + rule|text|ND-ProcedureTenderingProcess-16 + rule|text|ND-ProcedureTerms-16 + rule|text|ND-RootExtension-16 + rule|text|ND-SenderContact-16 + + + rule|text|ND-Buyer-16 + + + rule|text|ND-LotProcurementScope-16 + rule|text|ND-LotTenderingProcess-16 + rule|text|ND-LotTenderingTerms-16 + + + rule|text|ND-AuctionTerms-16 + + + rule|text|ND-InterestExpressionReceptionPeriod-16 + rule|text|ND-PMCAnswersDeadline-16 + + + rule|text|ND-LotProcurementDocument-16 + rule|text|ND-LotReservedParticipation-16 + rule|text|ND-LotReviewTerms-16 + rule|text|ND-NonUBLTenderingTerms-16 + rule|text|ND-Participants-16 + rule|text|ND-PostAwardProcess-16 + rule|text|ND-SubcontractingObligation-16 + + + rule|text|ND-LotAwardCriterionNumberComplicatedUnpublish-16 + + + rule|text|ND-LotAwardCriterionTypeUnpublish-16 + + + rule|text|ND-LotAwardCriterionFixNumberUnpublish-16 + + + rule|text|ND-LotsGroupAwardCriterionNumberComplicatedUnpublish-16 + + + rule|text|ND-LotsGroupAwardCriterionTypeUnpublish-16 + + + rule|text|ND-LotsGroupAwardCriterionFixNumberUnpublish-16 + + + rule|text|ND-ProcedureTypeUnpublish-16 + + + rule|text|ND-ProcedureAcceleratedUnpublish-16 + + + rule|text|ND-TendererQualificationRequest-16 + + + rule|text|ND-CrossBorderLawUnpublish-16 + + + rule|text|ND-ExclusionGrounds-16 + + + rule|text|ND-ContractModification-16 + rule|text|ND-NoticeResult-16 + rule|text|ND-Organizations-16 + rule|text|ND-ReviewRequests-16 + + + rule|text|ND-Organization-16 + + + rule|text|ND-Company-16 + + diff --git a/src/test/resources/eforms-sdk-tests/tedefo-2768/invalid/schematrons/static/complete-validation.sch b/src/test/resources/eforms-sdk-tests/tedefo-2768/invalid/schematrons/static/complete-validation.sch new file mode 100644 index 0000000..c17da2c --- /dev/null +++ b/src/test/resources/eforms-sdk-tests/tedefo-2768/invalid/schematrons/static/complete-validation.sch @@ -0,0 +1,316 @@ + + + + + eForms schematron rules + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + cac:ProcessJustification + cac:AuctionTerms + cac:AwardingTerms + cac:TechnicalCommitteePerson/cbc:FamilyName + cac:PostalAddress + cac:Contact + cac:BusinessParty + cac:PartyLegalEntity[cbc:CompanyID/@schemeName = 'EU']/cbc:CompanyID + cac:PartyLegalEntity[cbc:CompanyID/@schemeName = 'national']/cbc:CompanyID + cac:Party + cac:ServiceProviderParty/cac:Party/cac:PartyIdentification/cbc:ID + efac:Change + efac:Company + cac:PostalAddress/cbc:Department + cac:PartyLegalEntity/cbc:CompanyID + cac:Contact/cbc:Name + cac:Contact/cbc:Telephone + cac:Contact/cbc:ElectronicMail + cac:PostalAddress/cbc:CountrySubentityCode + cac:PostalAddress/cbc:StreetName + cac:PostalAddress/cbc:AdditionalStreetName + cac:PostalAddress/cac:AddressLine/cbc:Line + cac:PostalAddress/cbc:PostalZone + cac:PostalAddress/cbc:CityName + cac:PostalAddress/cac:Country/cbc:IdentificationCode + cac:Contact/cbc:Telefax + efac:ConcessionRevenue + efac:Funding + efac:ContractModification + efac:Change/efac:ChangedSection/efbc:ChangedSectionIdentifier + cac:ContractingParty + ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension/efac:FieldsPrivacy + cac:SpecificTendererRequirement + cac:ContractExecutionRequirement + efac:DurationJustification + cac:FrameworkAgreement + efac:Funding + cac:AdditionalDocumentReference + cac:LotsGroup + cac:ProcurementProjectLotReference/cbc:ID[@schemeName='Lot'] + efac:InterestExpressionReceptionPeriod + cac:PartyLegalEntity + cac:AwardingCriterion + cac:SubordinateAwardingCriterion/cbc:AwardingCriterionTypeCode[@listName='award-criterion-type'] + efac:FieldsPrivacy + ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension/efac:FieldsPrivacy + efac:AwardCriterionParameter[efbc:ParameterCode/@listName='number-fixed']/efbc:ParameterNumeric + efac:AwardCriterionParameter[efbc:ParameterCode/@listName='number-threshold']/efbc:ParameterNumeric + efac:AwardCriterionParameter[efbc:ParameterCode/@listName='number-weight']/efbc:ParameterNumeric + efac:FieldsPrivacy + cac:LotDistribution + cac:LotsGroup/cbc:LotsGroupID + cac:PlannedPeriod + cac:EmploymentLegislationDocumentReference + cac:EnvironmentalLegislationDocumentReference + cac:FiscalLegislationDocumentReference + cac:Address/cbc:CountrySubentityCode + cac:Address/cbc:StreetName + cac:Address/cbc:AdditionalStreetName + cac:Address/cac:AddressLine/cbc:Line + cac:Address/cbc:PostalZone + cac:Address/cbc:CityName + cac:Address/cac:Country/cbc:IdentificationCode + cac:Address/cbc:Region + cac:NoticeDocumentReference + cac:CallForTendersDocumentReference + ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension/efac:OfficialLanguages/cac:Language/cbc:ID + ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension/efac:NonOfficialLanguages/cac:Language/cbc:ID + cac:ProcurementProject + cac:ProcurementAdditionalType[cbc:ProcurementTypeCode/@listName='strategic-procurement']/cbc:ProcurementTypeCode + cac:MainCommodityClassification/cbc:ItemClassificationCode + cac:AdditionalCommodityClassification/cbc:ItemClassificationCode + cac:RequestedTenderTotal/ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension/efbc:FrameworkMaximumAmount + cac:ProcurementAdditionalType[cbc:ProcurementTypeCode/@listName='contract-nature']/cbc:ProcurementTypeCode + cac:ProcurementAdditionalType[cbc:ProcurementTypeCode/@listName='accessibility']/cbc:ProcurementTypeCode + cac:ProcurementAdditionalType[cbc:ProcurementTypeCode/@listName='environmental-impact']/cbc:ProcurementTypeCode + cac:ProcurementAdditionalType[cbc:ProcurementTypeCode/@listName='social-objective']/cbc:ProcurementTypeCode + cac:ProcurementAdditionalType[cbc:ProcurementTypeCode/@listName='innovative-acquisition']/cbc:ProcurementTypeCode + cac:ProcurementAdditionalType[cbc:ProcurementTypeCode/@listName='gpp-criteria']/cbc:ProcurementTypeCode + cac:TendererQualificationRequest + cac:SpecificTendererRequirement[cbc:TendererRequirementTypeCode/@listName='reserved-procurement']/cbc:TendererRequirementTypeCode + efac:LotResult + efac:FrameworkAgreementValues + efac:AppealRequestsStatistics[efbc:StatisticsCode/@listName='irregularity-type']/efbc:StatisticsCode + efac:AppealRequestsStatistics[efbc:StatisticsCode/@listName='review-type']/efbc:StatisticsCode + efac:ReceivedSubmissionsStatistics/efbc:StatisticsNumeric + efac:ReceivedSubmissionsStatistics/efbc:StatisticsCode + cac:FinancingParty/cac:PartyIdentification/cbc:ID + cac:PayerParty/cac:PartyIdentification/cbc:ID + efac:SettledContract/cbc:ID + efac:LotTender/cbc:ID + cac:AppealTerms + cac:PresentationPeriod/cbc:Description + efac:LotTender + efac:Origin + efac:Origin/efbc:AreaCode + efac:AggregatedAmounts/cbc:PaidAmount + efac:AggregatedAmounts/efbc:PaidAmountDescription + efac:AggregatedAmounts/efbc:PenaltiesAmount + efac:ContractTerm[not(efbc:TermCode/text()='all-rev-tic')][efbc:TermCode/@listName='contract-detail']/efbc:TermCode + efac:ContractTerm[efbc:TermCode/@listName='rewards-penalties']/efbc:TermCode + cac:TenderingProcess + ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension + cac:NoticeDocumentReference/cbc:ReferencedDocumentInternalAddress + cac:ParticipationRequestReceptionPeriod/cbc:EndDate + cac:ParticipationRequestReceptionPeriod/cbc:EndTime + cac:TenderSubmissionDeadlinePeriod/cbc:EndDate + cac:TenderSubmissionDeadlinePeriod/cbc:EndTime + cac:OpenTenderEvent/cbc:OccurrenceDate + cac:AdditionalInformationRequestPeriod/cbc:EndDate + cac:AdditionalInformationRequestPeriod/cbc:EndTime + cac:ContractingSystem[cbc:ContractingSystemTypeCode/@listName='framework-agreement']/cbc:ContractingSystemTypeCode + cac:ContractingSystem[cbc:ContractingSystemTypeCode/@listName='dps-usage']/cbc:ContractingSystemTypeCode + cac:TenderingTerms + cac:TenderRecipientParty/cbc:EndpointID + cac:AllowedSubcontractTerms[cbc:SubcontractingConditionsCode/@listName='subcontracting-obligation']/cbc:SubcontractingConditionsCode + cac:ContractExecutionRequirement[cbc:ExecutionRequirementCode/@listName='reserved-execution']/cbc:ExecutionRequirementCode + cac:ContractExecutionRequirement[cbc:ExecutionRequirementCode/@listName='einvoicing']/cbc:ExecutionRequirementCode + cac:ContractExecutionRequirement[cbc:ExecutionRequirementCode/@listName='esignature-submission']/cbc:ExecutionRequirementCode + cac:RequiredFinancialGuarantee/cbc:Description + cac:RequiredFinancialGuarantee/cbc:GuaranteeTypeCode[@listName='tender-guarantee-required'] + cac:TendererQualificationRequest[not(cac:SpecificTendererRequirement)]/cbc:CompanyLegalForm + cac:TendererQualificationRequest[not(cac:SpecificTendererRequirement)]/cbc:CompanyLegalFormCode + cac:ContractExecutionRequirement[cbc:ExecutionRequirementCode/@listName='ecatalog-submission']/cbc:ExecutionRequirementCode + cac:ContractExecutionRequirement[cbc:ExecutionRequirementCode/@listName='nda']/cbc:ExecutionRequirementCode + cac:Language/cbc:ID + cac:ContractExecutionRequirement[cbc:ExecutionRequirementCode/@listName='conditions']/cbc:ExecutionRequirementCode + cac:ContractExecutionRequirement[cbc:ExecutionRequirementCode/@listName='customer-service']/cbc:ExecutionRequirementCode + cac:TenderRecipientParty/cac:PartyIdentification/cbc:ID + cac:RequestedTenderTotal + cac:SubordinateAwardingCriterion/cbc:AwardingCriterionTypeCode[@listName='award-criterion-type'] + efac:FieldsPrivacy + ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension/efac:FieldsPrivacy + efac:AwardCriterionParameter[efbc:ParameterCode/@listName='number-fixed']/efbc:ParameterNumeric + efac:AwardCriterionParameter[efbc:ParameterCode/@listName='number-threshold']/efbc:ParameterNumeric + efac:AwardCriterionParameter[efbc:ParameterCode/@listName='number-weight']/efbc:ParameterNumeric + efac:FieldsPrivacy + cac:TenderingTerms/cac:AwardingTerms + cac:TenderingProcess/cac:FrameworkAgreement + cac:RequestedTenderTotal/ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension/efbc:FrameworkMaximumAmount + cac:RequestedTenderTotal + efac:Change + efac:ChangeReason + efac:ChangedSection + cac:ProcessJustification + ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension + efac:Funding/efbc:FinancingIdentifier + efac:TenderSubcontractingRequirements/efbc:TenderSubcontractingRequirementsCode + efac:Funding/cbc:FundingProgramCode + efac:SelectionCriteria/cbc:CriterionTypeCode[@listName='selection-criterion'] + efac:DecisionReason/efac:FieldsPrivacy + efac:FieldsPrivacy + efac:NoticeResult + efac:GroupFramework + efac:NoticePurpose + cac:ContractExtension + cac:Renewal/cac:Period/cbc:Description + efac:Organization + efac:TouchPoint/cac:PartyIdentification/cbc:ID + efac:UltimateBeneficialOwner/cbc:ID + efac:Organizations + efac:UltimateBeneficialOwner/cbc:ID + efac:ContractTerm + efac:AnswerReceptionPeriod + cac:ProcurementProjectLot[cbc:ID/@schemeName='Part'] + cac:EmploymentLegislationDocumentReference + cac:EnvironmentalLegislationDocumentReference + cac:FiscalLegislationDocumentReference + cac:Address/cbc:CountrySubentityCode + cac:Address/cbc:StreetName + cac:Address/cbc:AdditionalStreetName + cac:Address/cac:AddressLine/cbc:Line + cac:Address/cbc:PostalZone + cac:Address/cbc:CityName + cac:Address/cac:Country/cbc:IdentificationCode + cac:Address/cbc:Region + ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension/efac:OfficialLanguages/cac:Language/cbc:ID + ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension/efac:NonOfficialLanguages/cac:Language/cbc:ID + cac:ProcurementProject + cac:MainCommodityClassification/cbc:ItemClassificationCode + cac:AdditionalCommodityClassification/cbc:ItemClassificationCode + cac:ProcurementAdditionalType[cbc:ProcurementTypeCode/@listName='contract-nature']/cbc:ProcurementTypeCode + cac:SpecificTendererRequirement[cbc:TendererRequirementTypeCode/@listName='reserved-procurement']/cbc:TendererRequirementTypeCode + cac:AppealTerms + cac:NoticeDocumentReference/cbc:ReferencedDocumentInternalAddress + cac:AdditionalInformationRequestPeriod/cbc:EndDate + cac:AdditionalInformationRequestPeriod/cbc:EndTime + cac:ContractingSystem[cbc:ContractingSystemTypeCode/@listName='framework-agreement']/cbc:ContractingSystemTypeCode + cac:ContractingSystem[cbc:ContractingSystemTypeCode/@listName='dps-usage']/cbc:ContractingSystemTypeCode + cac:TenderingTerms + cac:ContractExecutionRequirement[cbc:ExecutionRequirementCode/@listName='reserved-execution']/cbc:ExecutionRequirementCode + cac:EconomicOperatorShortList + cac:PreSelectedParty/cac:PartyName/cbc:Name + cac:PaymentTerms + cac:PostAwardProcess + cac:Prize + ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension/efac:FieldsPrivacy + cac:RealizedLocation + cac:ProcurementProject + cac:MainCommodityClassification/cbc:ItemClassificationCode + cac:AdditionalCommodityClassification/cbc:ItemClassificationCode + cac:RequestedTenderTotal/ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension/efbc:FrameworkMaximumAmount + cac:ProcurementAdditionalType[cbc:ProcurementTypeCode/@listName='contract-nature']/cbc:ProcurementTypeCode + cac:ProcurementAdditionalType[cbc:ProcurementTypeCode/@listName='transport-service']/cbc:ProcurementTypeCode + cac:TenderingProcess + cac:NoticeDocumentReference/cbc:ID + cac:TenderingTerms + cac:ProcurementLegislationDocumentReference[not(cbc:ID/text()=('CrossBorderLaw','LocalLegalBasis'))]/cbc:ID + cac:ProcurementLegislationDocumentReference[cbc:ID/text()='LocalLegalBasis']/cbc:ID + cac:ProcurementLegislationDocumentReference[cbc:ID/text()='CrossBorderLaw']/cbc:ID + ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension/efac:FieldsPrivacy + cac:RequestedTenderTotal + cac:OpenTenderEvent + cac:OccurenceLocation/cbc:Description + efac:ReceivedSubmissionsStatistics + efac:AppealsInformation + efac:AppealRequestsStatistics + efac:AppealedItem/cbc:ID + efac:AppealDecision/efbc:DecisionTypeCode + efac:AppealIrregularity/efbc:IrregularityTypeCode + efac:AppealRemedy/efbc:RemedyTypeCode + efac:AppealProcessingParty/efbc:AppealProcessingPartyTypeCode + efac:AppealingParty/efbc:AppealingPartyTypeCode + efac:AppealProcessingParty/efbc:AppealProcessingPartyTypeDescription + efac:AppealProcessingParty/cac:Party/cac:PartyIdentification/cbc:ID + efac:AppealingParty/cac:Party/cac:PartyIdentification/cbc:ID + ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension + efac:Publication/efbc:NoticePublicationID[@schemeName='ojs-notice-id'] + efac:Publication/efbc:GazetteID[@schemeName='ojs-id'] + efac:Publication/efbc:PublicationDate + cac:BusinessCapability/cbc:CapabilityTypeCode + cac:ContractingParty/cac:Party/cac:PartyIdentification/cbc:ID + cac:EconomicOperatorShortList + efac:CriterionParameter + cac:SecurityClearanceTerm + efac:SelectionCriteria + efac:CriterionParameter[efbc:ParameterCode/@listName='number-threshold']/efbc:ParameterNumeric + efac:CriterionParameter[efbc:ParameterCode/@listName='number-weight']/efbc:ParameterNumeric + cac:SenderParty/cac:Contact + efac:SettledContract + efac:LotTender/cbc:ID + efac:Funding/efbc:FinancingIdentifier + efac:Funding/cbc:FundingProgramCode + cac:SignatoryParty/cac:PartyIdentification/cbc:ID + efac:StrategicProcurement + efac:StrategicProcurement + efac:MainContractor/cbc:ID + efac:SubcontractingTerm + cac:AllowedSubcontractTerms + cac:TendererQualificationRequest + efac:Tenderer/cbc:ID + efac:SubContractor/cbc:ID + cac:PostalAddress/cbc:Department + cac:Contact/cbc:Name + cac:Contact/cbc:Telephone + cac:Contact/cbc:ElectronicMail + cac:PostalAddress/cbc:CountrySubentityCode + cac:PostalAddress/cbc:StreetName + cac:PostalAddress/cbc:AdditionalStreetName + cac:PostalAddress/cac:AddressLine/cbc:Line + cac:PostalAddress/cbc:PostalZone + cac:PostalAddress/cbc:CityName + cac:PostalAddress/cac:Country/cbc:IdentificationCode + cac:Contact/cbc:Telefax + cac:Contact/cbc:Telephone + cac:Contact/cbc:ElectronicMail + cac:ResidenceAddress/cbc:CountrySubentityCode + cac:ResidenceAddress/cbc:StreetName + cac:ResidenceAddress/cbc:AdditionalStreetName + cac:ResidenceAddress/cac:AddressLine/cbc:Line + cac:ResidenceAddress/cbc:PostalZone + cac:ResidenceAddress/cbc:CityName + cac:ResidenceAddress/cac:Country/cbc:IdentificationCode + efac:Nationality/cbc:NationalityID + cac:Contact/cbc:Telefax + efac:FieldsPrivacy + + \ No newline at end of file diff --git a/src/test/resources/eforms-sdk-tests/tedefo-2768/invalid/schematrons/static/validation-stage-1a.sch b/src/test/resources/eforms-sdk-tests/tedefo-2768/invalid/schematrons/static/validation-stage-1a.sch new file mode 100644 index 0000000..9ab9877 --- /dev/null +++ b/src/test/resources/eforms-sdk-tests/tedefo-2768/invalid/schematrons/static/validation-stage-1a.sch @@ -0,0 +1,21 @@ + + + + + rule|text|P-0001 + + + rule|text|P-0002 + + + + + rule|text|P-0004 + + + + + rule|text|P-0005 + + + diff --git a/src/test/resources/eforms-sdk-tests/tedefo-2768/invalid/schematrons/static/validation-stage-1b-1.sch b/src/test/resources/eforms-sdk-tests/tedefo-2768/invalid/schematrons/static/validation-stage-1b-1.sch new file mode 100644 index 0000000..1bd476f --- /dev/null +++ b/src/test/resources/eforms-sdk-tests/tedefo-2768/invalid/schematrons/static/validation-stage-1b-1.sch @@ -0,0 +1,40 @@ + + + + + rule|text|ND-BusinessParty-1 + rule|text|ND-ContractingParty-1 + rule|text|ND-GazetteReference-1 + rule|text|ND-OperationType-1 + rule|text|ND-Part-1 + rule|text|ND-ProcedureProcurementScope-1 + rule|text|ND-ProcedureTenderingProcess-1 + rule|text|ND-RootExtension-1 + rule|text|ND-SenderContact-1 + + + rule|text|ND-Buyer-1 + + + rule|text|ND-ProcedureValueEstimate-1 + + + rule|text|ND-LotDistribution-1 + rule|text|ND-TendererQualificationRequest-1 + + + rule|text|ND-CrossBorderLawUnpublish-1 + + + rule|text|ND-ContractModification-1 + rule|text|ND-NoticeResult-1 + rule|text|ND-Organizations-1 + rule|text|ND-ReviewRequests-1 + + + rule|text|ND-Organization-1 + + + rule|text|ND-Company-1 + + diff --git a/src/test/resources/eforms-sdk-tests/tedefo-2768/invalid/schematrons/static/validation-stage-1b-16.sch b/src/test/resources/eforms-sdk-tests/tedefo-2768/invalid/schematrons/static/validation-stage-1b-16.sch new file mode 100644 index 0000000..67d8951 --- /dev/null +++ b/src/test/resources/eforms-sdk-tests/tedefo-2768/invalid/schematrons/static/validation-stage-1b-16.sch @@ -0,0 +1,85 @@ + + + + + rule|text|ND-BusinessParty-16 + rule|text|ND-ContractingParty-16 + rule|text|ND-GazetteReference-16 + rule|text|ND-OperationType-16 + rule|text|ND-Part-16 + rule|text|ND-ProcedureProcurementScope-16 + rule|text|ND-ProcedureTenderingProcess-16 + rule|text|ND-ProcedureTerms-16 + rule|text|ND-RootExtension-16 + rule|text|ND-SenderContact-16 + + + rule|text|ND-Buyer-16 + + + rule|text|ND-LotProcurementScope-16 + rule|text|ND-LotTenderingProcess-16 + rule|text|ND-LotTenderingTerms-16 + + + rule|text|ND-AuctionTerms-16 + + + rule|text|ND-InterestExpressionReceptionPeriod-16 + rule|text|ND-PMCAnswersDeadline-16 + + + rule|text|ND-LotProcurementDocument-16 + rule|text|ND-LotReservedParticipation-16 + rule|text|ND-LotReviewTerms-16 + rule|text|ND-NonUBLTenderingTerms-16 + rule|text|ND-Participants-16 + rule|text|ND-PostAwardProcess-16 + rule|text|ND-SubcontractingObligation-16 + + + rule|text|ND-LotAwardCriterionNumberComplicatedUnpublish-16 + + + rule|text|ND-LotAwardCriterionTypeUnpublish-16 + + + rule|text|ND-LotAwardCriterionFixNumberUnpublish-16 + + + rule|text|ND-LotsGroupAwardCriterionNumberComplicatedUnpublish-16 + + + rule|text|ND-LotsGroupAwardCriterionTypeUnpublish-16 + + + rule|text|ND-LotsGroupAwardCriterionFixNumberUnpublish-16 + + + rule|text|ND-ProcedureTypeUnpublish-16 + + + rule|text|ND-ProcedureAcceleratedUnpublish-16 + + + rule|text|ND-TendererQualificationRequest-16 + + + rule|text|ND-CrossBorderLawUnpublish-16 + + + rule|text|ND-ExclusionGrounds-16 + + + rule|text|ND-ContractModification-16 + rule|text|ND-NoticeResult-16 + rule|text|ND-Organizations-16 + rule|text|ND-ReviewRequests-16 + + + rule|text|ND-Organization-16 + + + rule|text|ND-Company-16 + + diff --git a/src/test/resources/eforms-sdk-tests/tedefo-2768/valid/notice-types/1.json b/src/test/resources/eforms-sdk-tests/tedefo-2768/valid/notice-types/1.json new file mode 100644 index 0000000..f4a8a55 --- /dev/null +++ b/src/test/resources/eforms-sdk-tests/tedefo-2768/valid/notice-types/1.json @@ -0,0 +1,48 @@ +{ + "ublVersion" : "2.3", + "sdkVersion" : "1.10.0", + "metadataDatabase" : { + "version" : "1.10.0", + "createdOn" : "2023-11-15T14:00:00" + }, + "noticeId" : "1", + "metadata" : [ { + "id" : "BT-02-notice", + "contentType" : "field", + "displayType" : "COMBOBOX", + "description" : "Notice Type", + "_label" : "field|name|BT-02-notice", + "readOnly" : true + } ], + "content" : [ { + "id" : "GR-Buyer", + "contentType" : "group", + "displayType" : "SECTION", + "description" : "Contracting Party and Provider related Information", + "_label" : "group|name|GR-Buyer", + "content" : [ { + "id" : "GR-ContractingAuthority", + "contentType" : "group", + "nodeId" : "ND-ContractingParty", + "displayType" : "GROUP", + "description" : "Contracting Party related Information (URL, Legal Type, Contracting Type, Activity, …)", + "_label" : "group|name|ND-ContractingParty", + "_repeatable" : true, + "content" : [ { + "id" : "GR-ContractingAuthority-Buyer", + "contentType" : "group", + "displayType" : "GROUP", + "description" : "Contracting Party related Information (URL, Legal Type, Contracting Type, Activity, …)", + "_label" : "group|name|GR-ContractingAuthority-Buyer", + "content" : [ { + "id" : "OPT-300-Procedure-Buyer", + "contentType" : "field", + "displayType" : "COMBOBOX", + "description" : "Buyer Technical Identifier Reference", + "_label" : "field|name|OPT-300-Procedure-Buyer", + "_idSchemes" : [ "ORG" ] + } ] + } ] + } ] + } ] +} \ No newline at end of file diff --git a/src/test/resources/eforms-sdk-tests/tedefo-2768/valid/notice-types/16.json b/src/test/resources/eforms-sdk-tests/tedefo-2768/valid/notice-types/16.json new file mode 100644 index 0000000..d5a465c --- /dev/null +++ b/src/test/resources/eforms-sdk-tests/tedefo-2768/valid/notice-types/16.json @@ -0,0 +1,48 @@ +{ + "ublVersion" : "2.3", + "sdkVersion" : "1.10.0", + "metadataDatabase" : { + "version" : "1.10.0", + "createdOn" : "2023-11-15T14:00:00" + }, + "noticeId" : "16", + "metadata" : [ { + "id" : "BT-02-notice", + "contentType" : "field", + "displayType" : "COMBOBOX", + "description" : "Notice Type", + "_label" : "field|name|BT-02-notice", + "readOnly" : true + } ], + "content" : [ { + "id" : "GR-Buyer", + "contentType" : "group", + "displayType" : "SECTION", + "description" : "Contracting Party and Provider related Information", + "_label" : "group|name|GR-Buyer", + "content" : [ { + "id" : "GR-ContractingAuthority", + "contentType" : "group", + "nodeId" : "ND-ContractingParty", + "displayType" : "GROUP", + "description" : "Contracting Party related Information (URL, Legal Type, Contracting Type, Activity, …)", + "_label" : "group|name|ND-ContractingParty", + "_repeatable" : true, + "content" : [ { + "id" : "GR-ContractingAuthority-Buyer", + "contentType" : "group", + "displayType" : "GROUP", + "description" : "Contracting Party related Information (URL, Legal Type, Contracting Type, Activity, …)", + "_label" : "group|name|GR-ContractingAuthority-Buyer", + "content" : [ { + "id" : "OPT-300-Procedure-Buyer", + "contentType" : "field", + "displayType" : "COMBOBOX", + "description" : "Buyer Technical Identifier Reference", + "_label" : "field|name|OPT-300-Procedure-Buyer", + "_idSchemes" : [ "ORG" ] + } ] + } ] + } ] + } ] +} \ No newline at end of file diff --git a/src/test/resources/eforms-sdk-tests/tedefo-2768/valid/notice-types/notice-types.json b/src/test/resources/eforms-sdk-tests/tedefo-2768/valid/notice-types/notice-types.json new file mode 100644 index 0000000..13d7343 --- /dev/null +++ b/src/test/resources/eforms-sdk-tests/tedefo-2768/valid/notice-types/notice-types.json @@ -0,0 +1,148 @@ +{ + "ublVersion" : "2.3", + "sdkVersion" : "1.10.0", + "metadataDatabase" : { + "version" : "1.10.0", + "createdOn" : "2023-11-15T14:00:00" + }, + "noticeSubTypes" : [ { + "documentType" : "PIN", + "legalBasis" : "32014L0024", + "formType" : "planning", + "type" : "pin-buyer", + "description" : "Notice of the publication of a prior information notice on a buyer profile - general directive", + "subTypeId" : "1", + "_label" : "notice|name|1", + "viewTemplateIds" : [ "1", "summary" ] + }, { + "documentType" : "CN", + "legalBasis" : "32014L0024", + "formType" : "competition", + "type" : "cn-standard", + "description" : "Contract notice – general directive, standard regime", + "subTypeId" : "16", + "_label" : "notice|name|16", + "viewTemplateIds" : [ "16", "summary" ] + } ], + "documentTypes" : [ { + "id" : "BRIN", + "namespace" : "http://data.europa.eu/p27/eforms-business-registration-information-notice/1", + "rootElement" : "BusinessRegistrationInformationNotice", + "schemaLocation" : "schemas/maindoc/EFORMS-BusinessRegistrationInformationNotice.xsd", + "additionalNamespaces" : [ { + "prefix" : "cac", + "uri" : "urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-2", + "schemaLocation" : "schemas/common/UBL-CommonAggregateComponents-2.3.xsd" + }, { + "prefix" : "cbc", + "uri" : "urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2", + "schemaLocation" : "schemas/common/UBL-CommonBasicComponents-2.3.xsd" + }, { + "prefix" : "ext", + "uri" : "urn:oasis:names:specification:ubl:schema:xsd:CommonExtensionComponents-2", + "schemaLocation" : "schemas/common/UBL-CommonExtensionComponents-2.3.xsd" + }, { + "prefix" : "efext", + "uri" : "http://data.europa.eu/p27/eforms-ubl-extensions/1", + "schemaLocation" : "schemas/common/EFORMS-ExtensionApex-2.3.xsd" + }, { + "prefix" : "efac", + "uri" : "http://data.europa.eu/p27/eforms-ubl-extension-aggregate-components/1", + "schemaLocation" : "schemas/common/EFORMS-ExtensionAggregateComponents-2.3.xsd" + }, { + "prefix" : "efbc", + "uri" : "http://data.europa.eu/p27/eforms-ubl-extension-basic-components/1", + "schemaLocation" : "schemas/common/EFORMS-ExtensionBasicComponents-2.3.xsd" + } ] + }, { + "id" : "CAN", + "namespace" : "urn:oasis:names:specification:ubl:schema:xsd:ContractAwardNotice-2", + "rootElement" : "ContractAwardNotice", + "schemaLocation" : "schemas/maindoc/UBL-ContractAwardNotice-2.3.xsd", + "additionalNamespaces" : [ { + "prefix" : "cac", + "uri" : "urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-2", + "schemaLocation" : "schemas/common/UBL-CommonAggregateComponents-2.3.xsd" + }, { + "prefix" : "cbc", + "uri" : "urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2", + "schemaLocation" : "schemas/common/UBL-CommonBasicComponents-2.3.xsd" + }, { + "prefix" : "ext", + "uri" : "urn:oasis:names:specification:ubl:schema:xsd:CommonExtensionComponents-2", + "schemaLocation" : "schemas/common/UBL-CommonExtensionComponents-2.3.xsd" + }, { + "prefix" : "efext", + "uri" : "http://data.europa.eu/p27/eforms-ubl-extensions/1", + "schemaLocation" : "schemas/common/EFORMS-ExtensionApex-2.3.xsd" + }, { + "prefix" : "efac", + "uri" : "http://data.europa.eu/p27/eforms-ubl-extension-aggregate-components/1", + "schemaLocation" : "schemas/common/EFORMS-ExtensionAggregateComponents-2.3.xsd" + }, { + "prefix" : "efbc", + "uri" : "http://data.europa.eu/p27/eforms-ubl-extension-basic-components/1", + "schemaLocation" : "schemas/common/EFORMS-ExtensionBasicComponents-2.3.xsd" + } ] + }, { + "id" : "CN", + "namespace" : "urn:oasis:names:specification:ubl:schema:xsd:ContractNotice-2", + "rootElement" : "ContractNotice", + "schemaLocation" : "schemas/maindoc/UBL-ContractNotice-2.3.xsd", + "additionalNamespaces" : [ { + "prefix" : "cac", + "uri" : "urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-2", + "schemaLocation" : "schemas/common/UBL-CommonAggregateComponents-2.3.xsd" + }, { + "prefix" : "cbc", + "uri" : "urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2", + "schemaLocation" : "schemas/common/UBL-CommonBasicComponents-2.3.xsd" + }, { + "prefix" : "ext", + "uri" : "urn:oasis:names:specification:ubl:schema:xsd:CommonExtensionComponents-2", + "schemaLocation" : "schemas/common/UBL-CommonExtensionComponents-2.3.xsd" + }, { + "prefix" : "efext", + "uri" : "http://data.europa.eu/p27/eforms-ubl-extensions/1", + "schemaLocation" : "schemas/common/EFORMS-ExtensionApex-2.3.xsd" + }, { + "prefix" : "efac", + "uri" : "http://data.europa.eu/p27/eforms-ubl-extension-aggregate-components/1", + "schemaLocation" : "schemas/common/EFORMS-ExtensionAggregateComponents-2.3.xsd" + }, { + "prefix" : "efbc", + "uri" : "http://data.europa.eu/p27/eforms-ubl-extension-basic-components/1", + "schemaLocation" : "schemas/common/EFORMS-ExtensionBasicComponents-2.3.xsd" + } ] + }, { + "id" : "PIN", + "namespace" : "urn:oasis:names:specification:ubl:schema:xsd:PriorInformationNotice-2", + "rootElement" : "PriorInformationNotice", + "schemaLocation" : "schemas/maindoc/UBL-PriorInformationNotice-2.3.xsd", + "additionalNamespaces" : [ { + "prefix" : "cac", + "uri" : "urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-2", + "schemaLocation" : "schemas/common/UBL-CommonAggregateComponents-2.3.xsd" + }, { + "prefix" : "cbc", + "uri" : "urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2", + "schemaLocation" : "schemas/common/UBL-CommonBasicComponents-2.3.xsd" + }, { + "prefix" : "ext", + "uri" : "urn:oasis:names:specification:ubl:schema:xsd:CommonExtensionComponents-2", + "schemaLocation" : "schemas/common/UBL-CommonExtensionComponents-2.3.xsd" + }, { + "prefix" : "efext", + "uri" : "http://data.europa.eu/p27/eforms-ubl-extensions/1", + "schemaLocation" : "schemas/common/EFORMS-ExtensionApex-2.3.xsd" + }, { + "prefix" : "efac", + "uri" : "http://data.europa.eu/p27/eforms-ubl-extension-aggregate-components/1", + "schemaLocation" : "schemas/common/EFORMS-ExtensionAggregateComponents-2.3.xsd" + }, { + "prefix" : "efbc", + "uri" : "http://data.europa.eu/p27/eforms-ubl-extension-basic-components/1", + "schemaLocation" : "schemas/common/EFORMS-ExtensionBasicComponents-2.3.xsd" + } ] + } ] +} \ No newline at end of file diff --git a/src/test/resources/eforms-sdk-tests/tedefo-2768/valid/schematrons/dynamic/complete-validation.sch b/src/test/resources/eforms-sdk-tests/tedefo-2768/valid/schematrons/dynamic/complete-validation.sch new file mode 100644 index 0000000..c0a36f9 --- /dev/null +++ b/src/test/resources/eforms-sdk-tests/tedefo-2768/valid/schematrons/dynamic/complete-validation.sch @@ -0,0 +1,318 @@ + + + + + eForms schematron rules + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + cac:ProcessJustification + cac:AuctionTerms + cac:AwardingTerms + cac:TechnicalCommitteePerson/cbc:FamilyName + cac:PostalAddress + cac:Contact + cac:BusinessParty + cac:PartyLegalEntity[cbc:CompanyID/@schemeName = 'EU']/cbc:CompanyID + cac:PartyLegalEntity[cbc:CompanyID/@schemeName = 'national']/cbc:CompanyID + cac:Party + cac:ServiceProviderParty/cac:Party/cac:PartyIdentification/cbc:ID + efac:Change + efac:Company + cac:PostalAddress/cbc:Department + cac:PartyLegalEntity/cbc:CompanyID + cac:Contact/cbc:Name + cac:Contact/cbc:Telephone + cac:Contact/cbc:ElectronicMail + cac:PostalAddress/cbc:CountrySubentityCode + cac:PostalAddress/cbc:StreetName + cac:PostalAddress/cbc:AdditionalStreetName + cac:PostalAddress/cac:AddressLine/cbc:Line + cac:PostalAddress/cbc:PostalZone + cac:PostalAddress/cbc:CityName + cac:PostalAddress/cac:Country/cbc:IdentificationCode + cac:Contact/cbc:Telefax + efac:ConcessionRevenue + efac:Funding + efac:ContractModification + efac:Change/efac:ChangedSection/efbc:ChangedSectionIdentifier + cac:ContractingParty + ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension/efac:FieldsPrivacy + cac:SpecificTendererRequirement + cac:ContractExecutionRequirement + efac:DurationJustification + cac:FrameworkAgreement + efac:Funding + cac:AdditionalDocumentReference + cac:LotsGroup + cac:ProcurementProjectLotReference/cbc:ID[@schemeName='Lot'] + efac:InterestExpressionReceptionPeriod + cac:PartyLegalEntity + cac:AwardingCriterion + cac:SubordinateAwardingCriterion/cbc:AwardingCriterionTypeCode[@listName='award-criterion-type'] + efac:FieldsPrivacy + ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension/efac:FieldsPrivacy + efac:AwardCriterionParameter[efbc:ParameterCode/@listName='number-fixed']/efbc:ParameterNumeric + efac:AwardCriterionParameter[efbc:ParameterCode/@listName='number-threshold']/efbc:ParameterNumeric + efac:AwardCriterionParameter[efbc:ParameterCode/@listName='number-weight']/efbc:ParameterNumeric + efac:FieldsPrivacy + cac:LotDistribution + cac:LotsGroup/cbc:LotsGroupID + cac:PlannedPeriod + cac:EmploymentLegislationDocumentReference + cac:EnvironmentalLegislationDocumentReference + cac:FiscalLegislationDocumentReference + cac:Address/cbc:CountrySubentityCode + cac:Address/cbc:StreetName + cac:Address/cbc:AdditionalStreetName + cac:Address/cac:AddressLine/cbc:Line + cac:Address/cbc:PostalZone + cac:Address/cbc:CityName + cac:Address/cac:Country/cbc:IdentificationCode + cac:Address/cbc:Region + cac:NoticeDocumentReference + cac:CallForTendersDocumentReference + ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension/efac:OfficialLanguages/cac:Language/cbc:ID + ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension/efac:NonOfficialLanguages/cac:Language/cbc:ID + cac:ProcurementProject + cac:ProcurementAdditionalType[cbc:ProcurementTypeCode/@listName='strategic-procurement']/cbc:ProcurementTypeCode + cac:MainCommodityClassification/cbc:ItemClassificationCode + cac:AdditionalCommodityClassification/cbc:ItemClassificationCode + cac:RequestedTenderTotal/ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension/efbc:FrameworkMaximumAmount + cac:ProcurementAdditionalType[cbc:ProcurementTypeCode/@listName='contract-nature']/cbc:ProcurementTypeCode + cac:ProcurementAdditionalType[cbc:ProcurementTypeCode/@listName='accessibility']/cbc:ProcurementTypeCode + cac:ProcurementAdditionalType[cbc:ProcurementTypeCode/@listName='environmental-impact']/cbc:ProcurementTypeCode + cac:ProcurementAdditionalType[cbc:ProcurementTypeCode/@listName='social-objective']/cbc:ProcurementTypeCode + cac:ProcurementAdditionalType[cbc:ProcurementTypeCode/@listName='innovative-acquisition']/cbc:ProcurementTypeCode + cac:ProcurementAdditionalType[cbc:ProcurementTypeCode/@listName='gpp-criteria']/cbc:ProcurementTypeCode + cac:TendererQualificationRequest + cac:SpecificTendererRequirement[cbc:TendererRequirementTypeCode/@listName='reserved-procurement']/cbc:TendererRequirementTypeCode + efac:LotResult + efac:FrameworkAgreementValues + efac:AppealRequestsStatistics[efbc:StatisticsCode/@listName='irregularity-type']/efbc:StatisticsCode + efac:AppealRequestsStatistics[efbc:StatisticsCode/@listName='review-type']/efbc:StatisticsCode + efac:ReceivedSubmissionsStatistics/efbc:StatisticsNumeric + efac:ReceivedSubmissionsStatistics/efbc:StatisticsCode + cac:FinancingParty/cac:PartyIdentification/cbc:ID + cac:PayerParty/cac:PartyIdentification/cbc:ID + efac:SettledContract/cbc:ID + efac:LotTender/cbc:ID + cac:AppealTerms + cac:PresentationPeriod/cbc:Description + efac:LotTender + efac:Origin + efac:Origin/efbc:AreaCode + efac:AggregatedAmounts/cbc:PaidAmount + efac:AggregatedAmounts/efbc:PaidAmountDescription + efac:AggregatedAmounts/efbc:PenaltiesAmount + efac:ContractTerm[not(efbc:TermCode/text()='all-rev-tic')][efbc:TermCode/@listName='contract-detail']/efbc:TermCode + efac:ContractTerm[efbc:TermCode/@listName='rewards-penalties']/efbc:TermCode + cac:TenderingProcess + ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension + cac:NoticeDocumentReference/cbc:ReferencedDocumentInternalAddress + cac:ParticipationRequestReceptionPeriod/cbc:EndDate + cac:ParticipationRequestReceptionPeriod/cbc:EndTime + cac:TenderSubmissionDeadlinePeriod/cbc:EndDate + cac:TenderSubmissionDeadlinePeriod/cbc:EndTime + cac:OpenTenderEvent/cbc:OccurrenceDate + cac:AdditionalInformationRequestPeriod/cbc:EndDate + cac:AdditionalInformationRequestPeriod/cbc:EndTime + cac:ContractingSystem[cbc:ContractingSystemTypeCode/@listName='framework-agreement']/cbc:ContractingSystemTypeCode + cac:ContractingSystem[cbc:ContractingSystemTypeCode/@listName='dps-usage']/cbc:ContractingSystemTypeCode + cac:TenderingTerms + cac:TenderRecipientParty/cbc:EndpointID + cac:AllowedSubcontractTerms[cbc:SubcontractingConditionsCode/@listName='subcontracting-obligation']/cbc:SubcontractingConditionsCode + cac:ContractExecutionRequirement[cbc:ExecutionRequirementCode/@listName='reserved-execution']/cbc:ExecutionRequirementCode + cac:ContractExecutionRequirement[cbc:ExecutionRequirementCode/@listName='einvoicing']/cbc:ExecutionRequirementCode + cac:ContractExecutionRequirement[cbc:ExecutionRequirementCode/@listName='esignature-submission']/cbc:ExecutionRequirementCode + cac:RequiredFinancialGuarantee/cbc:Description + cac:RequiredFinancialGuarantee/cbc:GuaranteeTypeCode[@listName='tender-guarantee-required'] + cac:TendererQualificationRequest[not(cac:SpecificTendererRequirement)]/cbc:CompanyLegalForm + cac:TendererQualificationRequest[not(cac:SpecificTendererRequirement)]/cbc:CompanyLegalFormCode + cac:ContractExecutionRequirement[cbc:ExecutionRequirementCode/@listName='ecatalog-submission']/cbc:ExecutionRequirementCode + cac:ContractExecutionRequirement[cbc:ExecutionRequirementCode/@listName='nda']/cbc:ExecutionRequirementCode + cac:Language/cbc:ID + cac:ContractExecutionRequirement[cbc:ExecutionRequirementCode/@listName='conditions']/cbc:ExecutionRequirementCode + cac:ContractExecutionRequirement[cbc:ExecutionRequirementCode/@listName='customer-service']/cbc:ExecutionRequirementCode + cac:TenderRecipientParty/cac:PartyIdentification/cbc:ID + cac:RequestedTenderTotal + cac:SubordinateAwardingCriterion/cbc:AwardingCriterionTypeCode[@listName='award-criterion-type'] + efac:FieldsPrivacy + ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension/efac:FieldsPrivacy + efac:AwardCriterionParameter[efbc:ParameterCode/@listName='number-fixed']/efbc:ParameterNumeric + efac:AwardCriterionParameter[efbc:ParameterCode/@listName='number-threshold']/efbc:ParameterNumeric + efac:AwardCriterionParameter[efbc:ParameterCode/@listName='number-weight']/efbc:ParameterNumeric + efac:FieldsPrivacy + cac:TenderingTerms/cac:AwardingTerms + cac:TenderingProcess/cac:FrameworkAgreement + cac:RequestedTenderTotal/ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension/efbc:FrameworkMaximumAmount + cac:RequestedTenderTotal + efac:Change + efac:ChangeReason + efac:ChangedSection + cac:ProcessJustification + ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension + efac:Funding/efbc:FinancingIdentifier + efac:TenderSubcontractingRequirements/efbc:TenderSubcontractingRequirementsCode + efac:Funding/cbc:FundingProgramCode + efac:SelectionCriteria/cbc:CriterionTypeCode[@listName='selection-criterion'] + efac:DecisionReason/efac:FieldsPrivacy + efac:FieldsPrivacy + efac:NoticeResult + efac:GroupFramework + efac:NoticePurpose + cac:ContractExtension + cac:Renewal/cac:Period/cbc:Description + efac:Organization + efac:TouchPoint/cac:PartyIdentification/cbc:ID + efac:UltimateBeneficialOwner/cbc:ID + efac:Organizations + efac:UltimateBeneficialOwner/cbc:ID + efac:ContractTerm + efac:AnswerReceptionPeriod + cac:ProcurementProjectLot[cbc:ID/@schemeName='Part'] + cac:EmploymentLegislationDocumentReference + cac:EnvironmentalLegislationDocumentReference + cac:FiscalLegislationDocumentReference + cac:Address/cbc:CountrySubentityCode + cac:Address/cbc:StreetName + cac:Address/cbc:AdditionalStreetName + cac:Address/cac:AddressLine/cbc:Line + cac:Address/cbc:PostalZone + cac:Address/cbc:CityName + cac:Address/cac:Country/cbc:IdentificationCode + cac:Address/cbc:Region + ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension/efac:OfficialLanguages/cac:Language/cbc:ID + ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension/efac:NonOfficialLanguages/cac:Language/cbc:ID + cac:ProcurementProject + cac:MainCommodityClassification/cbc:ItemClassificationCode + cac:AdditionalCommodityClassification/cbc:ItemClassificationCode + cac:ProcurementAdditionalType[cbc:ProcurementTypeCode/@listName='contract-nature']/cbc:ProcurementTypeCode + cac:SpecificTendererRequirement[cbc:TendererRequirementTypeCode/@listName='reserved-procurement']/cbc:TendererRequirementTypeCode + cac:AppealTerms + cac:NoticeDocumentReference/cbc:ReferencedDocumentInternalAddress + cac:AdditionalInformationRequestPeriod/cbc:EndDate + cac:AdditionalInformationRequestPeriod/cbc:EndTime + cac:ContractingSystem[cbc:ContractingSystemTypeCode/@listName='framework-agreement']/cbc:ContractingSystemTypeCode + cac:ContractingSystem[cbc:ContractingSystemTypeCode/@listName='dps-usage']/cbc:ContractingSystemTypeCode + cac:TenderingTerms + cac:ContractExecutionRequirement[cbc:ExecutionRequirementCode/@listName='reserved-execution']/cbc:ExecutionRequirementCode + cac:EconomicOperatorShortList + cac:PreSelectedParty/cac:PartyName/cbc:Name + cac:PaymentTerms + cac:PostAwardProcess + cac:Prize + ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension/efac:FieldsPrivacy + cac:RealizedLocation + cac:ProcurementProject + cac:MainCommodityClassification/cbc:ItemClassificationCode + cac:AdditionalCommodityClassification/cbc:ItemClassificationCode + cac:RequestedTenderTotal/ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension/efbc:FrameworkMaximumAmount + cac:ProcurementAdditionalType[cbc:ProcurementTypeCode/@listName='contract-nature']/cbc:ProcurementTypeCode + cac:ProcurementAdditionalType[cbc:ProcurementTypeCode/@listName='transport-service']/cbc:ProcurementTypeCode + cac:TenderingProcess + cac:NoticeDocumentReference/cbc:ID + cac:TenderingTerms + cac:ProcurementLegislationDocumentReference[not(cbc:ID/text()=('CrossBorderLaw','LocalLegalBasis'))]/cbc:ID + cac:ProcurementLegislationDocumentReference[cbc:ID/text()='LocalLegalBasis']/cbc:ID + cac:ProcurementLegislationDocumentReference[cbc:ID/text()='CrossBorderLaw']/cbc:ID + ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension/efac:FieldsPrivacy + cac:RequestedTenderTotal + cac:OpenTenderEvent + cac:OccurenceLocation/cbc:Description + efac:ReceivedSubmissionsStatistics + efac:AppealsInformation + efac:AppealRequestsStatistics + efac:AppealedItem/cbc:ID + efac:AppealDecision/efbc:DecisionTypeCode + efac:AppealIrregularity/efbc:IrregularityTypeCode + efac:AppealRemedy/efbc:RemedyTypeCode + efac:AppealProcessingParty/efbc:AppealProcessingPartyTypeCode + efac:AppealingParty/efbc:AppealingPartyTypeCode + efac:AppealProcessingParty/efbc:AppealProcessingPartyTypeDescription + efac:AppealProcessingParty/cac:Party/cac:PartyIdentification/cbc:ID + efac:AppealingParty/cac:Party/cac:PartyIdentification/cbc:ID + ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension + efac:Publication/efbc:NoticePublicationID[@schemeName='ojs-notice-id'] + efac:Publication/efbc:GazetteID[@schemeName='ojs-id'] + efac:Publication/efbc:PublicationDate + cac:BusinessCapability/cbc:CapabilityTypeCode + cac:ContractingParty/cac:Party/cac:PartyIdentification/cbc:ID + cac:EconomicOperatorShortList + efac:CriterionParameter + cac:SecurityClearanceTerm + efac:SelectionCriteria + efac:CriterionParameter[efbc:ParameterCode/@listName='number-threshold']/efbc:ParameterNumeric + efac:CriterionParameter[efbc:ParameterCode/@listName='number-weight']/efbc:ParameterNumeric + cac:SenderParty/cac:Contact + efac:SettledContract + efac:LotTender/cbc:ID + efac:Funding/efbc:FinancingIdentifier + efac:Funding/cbc:FundingProgramCode + cac:SignatoryParty/cac:PartyIdentification/cbc:ID + efac:StrategicProcurement + efac:StrategicProcurement + efac:MainContractor/cbc:ID + efac:SubcontractingTerm + cac:AllowedSubcontractTerms + cac:TendererQualificationRequest + efac:Tenderer/cbc:ID + efac:SubContractor/cbc:ID + cac:PostalAddress/cbc:Department + cac:Contact/cbc:Name + cac:Contact/cbc:Telephone + cac:Contact/cbc:ElectronicMail + cac:PostalAddress/cbc:CountrySubentityCode + cac:PostalAddress/cbc:StreetName + cac:PostalAddress/cbc:AdditionalStreetName + cac:PostalAddress/cac:AddressLine/cbc:Line + cac:PostalAddress/cbc:PostalZone + cac:PostalAddress/cbc:CityName + cac:PostalAddress/cac:Country/cbc:IdentificationCode + cac:Contact/cbc:Telefax + cac:Contact/cbc:Telephone + cac:Contact/cbc:ElectronicMail + cac:ResidenceAddress/cbc:CountrySubentityCode + cac:ResidenceAddress/cbc:StreetName + cac:ResidenceAddress/cbc:AdditionalStreetName + cac:ResidenceAddress/cac:AddressLine/cbc:Line + cac:ResidenceAddress/cbc:PostalZone + cac:ResidenceAddress/cbc:CityName + cac:ResidenceAddress/cac:Country/cbc:IdentificationCode + efac:Nationality/cbc:NationalityID + cac:Contact/cbc:Telefax + efac:FieldsPrivacy + + \ No newline at end of file diff --git a/src/test/resources/eforms-sdk-tests/tedefo-2768/valid/schematrons/dynamic/config.sch b/src/test/resources/eforms-sdk-tests/tedefo-2768/valid/schematrons/dynamic/config.sch new file mode 100644 index 0000000..bb6e87b --- /dev/null +++ b/src/test/resources/eforms-sdk-tests/tedefo-2768/valid/schematrons/dynamic/config.sch @@ -0,0 +1,5 @@ + + + diff --git a/src/test/resources/eforms-sdk-tests/tedefo-2768/valid/schematrons/dynamic/validation-stage-1a.sch b/src/test/resources/eforms-sdk-tests/tedefo-2768/valid/schematrons/dynamic/validation-stage-1a.sch new file mode 100644 index 0000000..9ab9877 --- /dev/null +++ b/src/test/resources/eforms-sdk-tests/tedefo-2768/valid/schematrons/dynamic/validation-stage-1a.sch @@ -0,0 +1,21 @@ + + + + + rule|text|P-0001 + + + rule|text|P-0002 + + + + + rule|text|P-0004 + + + + + rule|text|P-0005 + + + diff --git a/src/test/resources/eforms-sdk-tests/tedefo-2768/valid/schematrons/dynamic/validation-stage-1b-1.sch b/src/test/resources/eforms-sdk-tests/tedefo-2768/valid/schematrons/dynamic/validation-stage-1b-1.sch new file mode 100644 index 0000000..e51be47 --- /dev/null +++ b/src/test/resources/eforms-sdk-tests/tedefo-2768/valid/schematrons/dynamic/validation-stage-1b-1.sch @@ -0,0 +1,40 @@ + + + + + rule|text|ND-BusinessParty-1 + rule|text|ND-ContractingParty-1 + rule|text|ND-GazetteReference-1 + rule|text|ND-OperationType-1 + rule|text|ND-Part-1 + rule|text|ND-ProcedureProcurementScope-1 + rule|text|ND-ProcedureTenderingProcess-1 + rule|text|ND-RootExtension-1 + rule|text|ND-SenderContact-1 + + + rule|text|ND-Buyer-1 + + + rule|text|ND-ProcedureValueEstimate-1 + + + rule|text|ND-LotDistribution-1 + rule|text|ND-TendererQualificationRequest-1 + + + rule|text|ND-CrossBorderLawUnpublish-1 + + + rule|text|ND-ContractModification-1 + rule|text|ND-NoticeResult-1 + rule|text|ND-Organizations-1 + rule|text|ND-ReviewRequests-1 + + + rule|text|ND-Organization-1 + + + rule|text|ND-Company-1 + + diff --git a/src/test/resources/eforms-sdk-tests/tedefo-2768/valid/schematrons/dynamic/validation-stage-1b-16.sch b/src/test/resources/eforms-sdk-tests/tedefo-2768/valid/schematrons/dynamic/validation-stage-1b-16.sch new file mode 100644 index 0000000..67d8951 --- /dev/null +++ b/src/test/resources/eforms-sdk-tests/tedefo-2768/valid/schematrons/dynamic/validation-stage-1b-16.sch @@ -0,0 +1,85 @@ + + + + + rule|text|ND-BusinessParty-16 + rule|text|ND-ContractingParty-16 + rule|text|ND-GazetteReference-16 + rule|text|ND-OperationType-16 + rule|text|ND-Part-16 + rule|text|ND-ProcedureProcurementScope-16 + rule|text|ND-ProcedureTenderingProcess-16 + rule|text|ND-ProcedureTerms-16 + rule|text|ND-RootExtension-16 + rule|text|ND-SenderContact-16 + + + rule|text|ND-Buyer-16 + + + rule|text|ND-LotProcurementScope-16 + rule|text|ND-LotTenderingProcess-16 + rule|text|ND-LotTenderingTerms-16 + + + rule|text|ND-AuctionTerms-16 + + + rule|text|ND-InterestExpressionReceptionPeriod-16 + rule|text|ND-PMCAnswersDeadline-16 + + + rule|text|ND-LotProcurementDocument-16 + rule|text|ND-LotReservedParticipation-16 + rule|text|ND-LotReviewTerms-16 + rule|text|ND-NonUBLTenderingTerms-16 + rule|text|ND-Participants-16 + rule|text|ND-PostAwardProcess-16 + rule|text|ND-SubcontractingObligation-16 + + + rule|text|ND-LotAwardCriterionNumberComplicatedUnpublish-16 + + + rule|text|ND-LotAwardCriterionTypeUnpublish-16 + + + rule|text|ND-LotAwardCriterionFixNumberUnpublish-16 + + + rule|text|ND-LotsGroupAwardCriterionNumberComplicatedUnpublish-16 + + + rule|text|ND-LotsGroupAwardCriterionTypeUnpublish-16 + + + rule|text|ND-LotsGroupAwardCriterionFixNumberUnpublish-16 + + + rule|text|ND-ProcedureTypeUnpublish-16 + + + rule|text|ND-ProcedureAcceleratedUnpublish-16 + + + rule|text|ND-TendererQualificationRequest-16 + + + rule|text|ND-CrossBorderLawUnpublish-16 + + + rule|text|ND-ExclusionGrounds-16 + + + rule|text|ND-ContractModification-16 + rule|text|ND-NoticeResult-16 + rule|text|ND-Organizations-16 + rule|text|ND-ReviewRequests-16 + + + rule|text|ND-Organization-16 + + + rule|text|ND-Company-16 + + diff --git a/src/test/resources/eforms-sdk-tests/tedefo-2768/valid/schematrons/static/complete-validation.sch b/src/test/resources/eforms-sdk-tests/tedefo-2768/valid/schematrons/static/complete-validation.sch new file mode 100644 index 0000000..4c2ca60 --- /dev/null +++ b/src/test/resources/eforms-sdk-tests/tedefo-2768/valid/schematrons/static/complete-validation.sch @@ -0,0 +1,316 @@ + + + + + eForms schematron rules + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + cac:ProcessJustification + cac:AuctionTerms + cac:AwardingTerms + cac:TechnicalCommitteePerson/cbc:FamilyName + cac:PostalAddress + cac:Contact + cac:BusinessParty + cac:PartyLegalEntity[cbc:CompanyID/@schemeName = 'EU']/cbc:CompanyID + cac:PartyLegalEntity[cbc:CompanyID/@schemeName = 'national']/cbc:CompanyID + cac:Party + cac:ServiceProviderParty/cac:Party/cac:PartyIdentification/cbc:ID + efac:Change + efac:Company + cac:PostalAddress/cbc:Department + cac:PartyLegalEntity/cbc:CompanyID + cac:Contact/cbc:Name + cac:Contact/cbc:Telephone + cac:Contact/cbc:ElectronicMail + cac:PostalAddress/cbc:CountrySubentityCode + cac:PostalAddress/cbc:StreetName + cac:PostalAddress/cbc:AdditionalStreetName + cac:PostalAddress/cac:AddressLine/cbc:Line + cac:PostalAddress/cbc:PostalZone + cac:PostalAddress/cbc:CityName + cac:PostalAddress/cac:Country/cbc:IdentificationCode + cac:Contact/cbc:Telefax + efac:ConcessionRevenue + efac:Funding + efac:ContractModification + efac:Change/efac:ChangedSection/efbc:ChangedSectionIdentifier + cac:ContractingParty + ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension/efac:FieldsPrivacy + cac:SpecificTendererRequirement + cac:ContractExecutionRequirement + efac:DurationJustification + cac:FrameworkAgreement + efac:Funding + cac:AdditionalDocumentReference + cac:LotsGroup + cac:ProcurementProjectLotReference/cbc:ID[@schemeName='Lot'] + efac:InterestExpressionReceptionPeriod + cac:PartyLegalEntity + cac:AwardingCriterion + cac:SubordinateAwardingCriterion/cbc:AwardingCriterionTypeCode[@listName='award-criterion-type'] + efac:FieldsPrivacy + ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension/efac:FieldsPrivacy + efac:AwardCriterionParameter[efbc:ParameterCode/@listName='number-fixed']/efbc:ParameterNumeric + efac:AwardCriterionParameter[efbc:ParameterCode/@listName='number-threshold']/efbc:ParameterNumeric + efac:AwardCriterionParameter[efbc:ParameterCode/@listName='number-weight']/efbc:ParameterNumeric + efac:FieldsPrivacy + cac:LotDistribution + cac:LotsGroup/cbc:LotsGroupID + cac:PlannedPeriod + cac:EmploymentLegislationDocumentReference + cac:EnvironmentalLegislationDocumentReference + cac:FiscalLegislationDocumentReference + cac:Address/cbc:CountrySubentityCode + cac:Address/cbc:StreetName + cac:Address/cbc:AdditionalStreetName + cac:Address/cac:AddressLine/cbc:Line + cac:Address/cbc:PostalZone + cac:Address/cbc:CityName + cac:Address/cac:Country/cbc:IdentificationCode + cac:Address/cbc:Region + cac:NoticeDocumentReference + cac:CallForTendersDocumentReference + ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension/efac:OfficialLanguages/cac:Language/cbc:ID + ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension/efac:NonOfficialLanguages/cac:Language/cbc:ID + cac:ProcurementProject + cac:ProcurementAdditionalType[cbc:ProcurementTypeCode/@listName='strategic-procurement']/cbc:ProcurementTypeCode + cac:MainCommodityClassification/cbc:ItemClassificationCode + cac:AdditionalCommodityClassification/cbc:ItemClassificationCode + cac:RequestedTenderTotal/ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension/efbc:FrameworkMaximumAmount + cac:ProcurementAdditionalType[cbc:ProcurementTypeCode/@listName='contract-nature']/cbc:ProcurementTypeCode + cac:ProcurementAdditionalType[cbc:ProcurementTypeCode/@listName='accessibility']/cbc:ProcurementTypeCode + cac:ProcurementAdditionalType[cbc:ProcurementTypeCode/@listName='environmental-impact']/cbc:ProcurementTypeCode + cac:ProcurementAdditionalType[cbc:ProcurementTypeCode/@listName='social-objective']/cbc:ProcurementTypeCode + cac:ProcurementAdditionalType[cbc:ProcurementTypeCode/@listName='innovative-acquisition']/cbc:ProcurementTypeCode + cac:ProcurementAdditionalType[cbc:ProcurementTypeCode/@listName='gpp-criteria']/cbc:ProcurementTypeCode + cac:TendererQualificationRequest + cac:SpecificTendererRequirement[cbc:TendererRequirementTypeCode/@listName='reserved-procurement']/cbc:TendererRequirementTypeCode + efac:LotResult + efac:FrameworkAgreementValues + efac:AppealRequestsStatistics[efbc:StatisticsCode/@listName='irregularity-type']/efbc:StatisticsCode + efac:AppealRequestsStatistics[efbc:StatisticsCode/@listName='review-type']/efbc:StatisticsCode + efac:ReceivedSubmissionsStatistics/efbc:StatisticsNumeric + efac:ReceivedSubmissionsStatistics/efbc:StatisticsCode + cac:FinancingParty/cac:PartyIdentification/cbc:ID + cac:PayerParty/cac:PartyIdentification/cbc:ID + efac:SettledContract/cbc:ID + efac:LotTender/cbc:ID + cac:AppealTerms + cac:PresentationPeriod/cbc:Description + efac:LotTender + efac:Origin + efac:Origin/efbc:AreaCode + efac:AggregatedAmounts/cbc:PaidAmount + efac:AggregatedAmounts/efbc:PaidAmountDescription + efac:AggregatedAmounts/efbc:PenaltiesAmount + efac:ContractTerm[not(efbc:TermCode/text()='all-rev-tic')][efbc:TermCode/@listName='contract-detail']/efbc:TermCode + efac:ContractTerm[efbc:TermCode/@listName='rewards-penalties']/efbc:TermCode + cac:TenderingProcess + ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension + cac:NoticeDocumentReference/cbc:ReferencedDocumentInternalAddress + cac:ParticipationRequestReceptionPeriod/cbc:EndDate + cac:ParticipationRequestReceptionPeriod/cbc:EndTime + cac:TenderSubmissionDeadlinePeriod/cbc:EndDate + cac:TenderSubmissionDeadlinePeriod/cbc:EndTime + cac:OpenTenderEvent/cbc:OccurrenceDate + cac:AdditionalInformationRequestPeriod/cbc:EndDate + cac:AdditionalInformationRequestPeriod/cbc:EndTime + cac:ContractingSystem[cbc:ContractingSystemTypeCode/@listName='framework-agreement']/cbc:ContractingSystemTypeCode + cac:ContractingSystem[cbc:ContractingSystemTypeCode/@listName='dps-usage']/cbc:ContractingSystemTypeCode + cac:TenderingTerms + cac:TenderRecipientParty/cbc:EndpointID + cac:AllowedSubcontractTerms[cbc:SubcontractingConditionsCode/@listName='subcontracting-obligation']/cbc:SubcontractingConditionsCode + cac:ContractExecutionRequirement[cbc:ExecutionRequirementCode/@listName='reserved-execution']/cbc:ExecutionRequirementCode + cac:ContractExecutionRequirement[cbc:ExecutionRequirementCode/@listName='einvoicing']/cbc:ExecutionRequirementCode + cac:ContractExecutionRequirement[cbc:ExecutionRequirementCode/@listName='esignature-submission']/cbc:ExecutionRequirementCode + cac:RequiredFinancialGuarantee/cbc:Description + cac:RequiredFinancialGuarantee/cbc:GuaranteeTypeCode[@listName='tender-guarantee-required'] + cac:TendererQualificationRequest[not(cac:SpecificTendererRequirement)]/cbc:CompanyLegalForm + cac:TendererQualificationRequest[not(cac:SpecificTendererRequirement)]/cbc:CompanyLegalFormCode + cac:ContractExecutionRequirement[cbc:ExecutionRequirementCode/@listName='ecatalog-submission']/cbc:ExecutionRequirementCode + cac:ContractExecutionRequirement[cbc:ExecutionRequirementCode/@listName='nda']/cbc:ExecutionRequirementCode + cac:Language/cbc:ID + cac:ContractExecutionRequirement[cbc:ExecutionRequirementCode/@listName='conditions']/cbc:ExecutionRequirementCode + cac:ContractExecutionRequirement[cbc:ExecutionRequirementCode/@listName='customer-service']/cbc:ExecutionRequirementCode + cac:TenderRecipientParty/cac:PartyIdentification/cbc:ID + cac:RequestedTenderTotal + cac:SubordinateAwardingCriterion/cbc:AwardingCriterionTypeCode[@listName='award-criterion-type'] + efac:FieldsPrivacy + ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension/efac:FieldsPrivacy + efac:AwardCriterionParameter[efbc:ParameterCode/@listName='number-fixed']/efbc:ParameterNumeric + efac:AwardCriterionParameter[efbc:ParameterCode/@listName='number-threshold']/efbc:ParameterNumeric + efac:AwardCriterionParameter[efbc:ParameterCode/@listName='number-weight']/efbc:ParameterNumeric + efac:FieldsPrivacy + cac:TenderingTerms/cac:AwardingTerms + cac:TenderingProcess/cac:FrameworkAgreement + cac:RequestedTenderTotal/ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension/efbc:FrameworkMaximumAmount + cac:RequestedTenderTotal + efac:Change + efac:ChangeReason + efac:ChangedSection + cac:ProcessJustification + ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension + efac:Funding/efbc:FinancingIdentifier + efac:TenderSubcontractingRequirements/efbc:TenderSubcontractingRequirementsCode + efac:Funding/cbc:FundingProgramCode + efac:SelectionCriteria/cbc:CriterionTypeCode[@listName='selection-criterion'] + efac:DecisionReason/efac:FieldsPrivacy + efac:FieldsPrivacy + efac:NoticeResult + efac:GroupFramework + efac:NoticePurpose + cac:ContractExtension + cac:Renewal/cac:Period/cbc:Description + efac:Organization + efac:TouchPoint/cac:PartyIdentification/cbc:ID + efac:UltimateBeneficialOwner/cbc:ID + efac:Organizations + efac:UltimateBeneficialOwner/cbc:ID + efac:ContractTerm + efac:AnswerReceptionPeriod + cac:ProcurementProjectLot[cbc:ID/@schemeName='Part'] + cac:EmploymentLegislationDocumentReference + cac:EnvironmentalLegislationDocumentReference + cac:FiscalLegislationDocumentReference + cac:Address/cbc:CountrySubentityCode + cac:Address/cbc:StreetName + cac:Address/cbc:AdditionalStreetName + cac:Address/cac:AddressLine/cbc:Line + cac:Address/cbc:PostalZone + cac:Address/cbc:CityName + cac:Address/cac:Country/cbc:IdentificationCode + cac:Address/cbc:Region + ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension/efac:OfficialLanguages/cac:Language/cbc:ID + ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension/efac:NonOfficialLanguages/cac:Language/cbc:ID + cac:ProcurementProject + cac:MainCommodityClassification/cbc:ItemClassificationCode + cac:AdditionalCommodityClassification/cbc:ItemClassificationCode + cac:ProcurementAdditionalType[cbc:ProcurementTypeCode/@listName='contract-nature']/cbc:ProcurementTypeCode + cac:SpecificTendererRequirement[cbc:TendererRequirementTypeCode/@listName='reserved-procurement']/cbc:TendererRequirementTypeCode + cac:AppealTerms + cac:NoticeDocumentReference/cbc:ReferencedDocumentInternalAddress + cac:AdditionalInformationRequestPeriod/cbc:EndDate + cac:AdditionalInformationRequestPeriod/cbc:EndTime + cac:ContractingSystem[cbc:ContractingSystemTypeCode/@listName='framework-agreement']/cbc:ContractingSystemTypeCode + cac:ContractingSystem[cbc:ContractingSystemTypeCode/@listName='dps-usage']/cbc:ContractingSystemTypeCode + cac:TenderingTerms + cac:ContractExecutionRequirement[cbc:ExecutionRequirementCode/@listName='reserved-execution']/cbc:ExecutionRequirementCode + cac:EconomicOperatorShortList + cac:PreSelectedParty/cac:PartyName/cbc:Name + cac:PaymentTerms + cac:PostAwardProcess + cac:Prize + ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension/efac:FieldsPrivacy + cac:RealizedLocation + cac:ProcurementProject + cac:MainCommodityClassification/cbc:ItemClassificationCode + cac:AdditionalCommodityClassification/cbc:ItemClassificationCode + cac:RequestedTenderTotal/ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension/efbc:FrameworkMaximumAmount + cac:ProcurementAdditionalType[cbc:ProcurementTypeCode/@listName='contract-nature']/cbc:ProcurementTypeCode + cac:ProcurementAdditionalType[cbc:ProcurementTypeCode/@listName='transport-service']/cbc:ProcurementTypeCode + cac:TenderingProcess + cac:NoticeDocumentReference/cbc:ID + cac:TenderingTerms + cac:ProcurementLegislationDocumentReference[not(cbc:ID/text()=('CrossBorderLaw','LocalLegalBasis'))]/cbc:ID + cac:ProcurementLegislationDocumentReference[cbc:ID/text()='LocalLegalBasis']/cbc:ID + cac:ProcurementLegislationDocumentReference[cbc:ID/text()='CrossBorderLaw']/cbc:ID + ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension/efac:FieldsPrivacy + cac:RequestedTenderTotal + cac:OpenTenderEvent + cac:OccurenceLocation/cbc:Description + efac:ReceivedSubmissionsStatistics + efac:AppealsInformation + efac:AppealRequestsStatistics + efac:AppealedItem/cbc:ID + efac:AppealDecision/efbc:DecisionTypeCode + efac:AppealIrregularity/efbc:IrregularityTypeCode + efac:AppealRemedy/efbc:RemedyTypeCode + efac:AppealProcessingParty/efbc:AppealProcessingPartyTypeCode + efac:AppealingParty/efbc:AppealingPartyTypeCode + efac:AppealProcessingParty/efbc:AppealProcessingPartyTypeDescription + efac:AppealProcessingParty/cac:Party/cac:PartyIdentification/cbc:ID + efac:AppealingParty/cac:Party/cac:PartyIdentification/cbc:ID + ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension + efac:Publication/efbc:NoticePublicationID[@schemeName='ojs-notice-id'] + efac:Publication/efbc:GazetteID[@schemeName='ojs-id'] + efac:Publication/efbc:PublicationDate + cac:BusinessCapability/cbc:CapabilityTypeCode + cac:ContractingParty/cac:Party/cac:PartyIdentification/cbc:ID + cac:EconomicOperatorShortList + efac:CriterionParameter + cac:SecurityClearanceTerm + efac:SelectionCriteria + efac:CriterionParameter[efbc:ParameterCode/@listName='number-threshold']/efbc:ParameterNumeric + efac:CriterionParameter[efbc:ParameterCode/@listName='number-weight']/efbc:ParameterNumeric + cac:SenderParty/cac:Contact + efac:SettledContract + efac:LotTender/cbc:ID + efac:Funding/efbc:FinancingIdentifier + efac:Funding/cbc:FundingProgramCode + cac:SignatoryParty/cac:PartyIdentification/cbc:ID + efac:StrategicProcurement + efac:StrategicProcurement + efac:MainContractor/cbc:ID + efac:SubcontractingTerm + cac:AllowedSubcontractTerms + cac:TendererQualificationRequest + efac:Tenderer/cbc:ID + efac:SubContractor/cbc:ID + cac:PostalAddress/cbc:Department + cac:Contact/cbc:Name + cac:Contact/cbc:Telephone + cac:Contact/cbc:ElectronicMail + cac:PostalAddress/cbc:CountrySubentityCode + cac:PostalAddress/cbc:StreetName + cac:PostalAddress/cbc:AdditionalStreetName + cac:PostalAddress/cac:AddressLine/cbc:Line + cac:PostalAddress/cbc:PostalZone + cac:PostalAddress/cbc:CityName + cac:PostalAddress/cac:Country/cbc:IdentificationCode + cac:Contact/cbc:Telefax + cac:Contact/cbc:Telephone + cac:Contact/cbc:ElectronicMail + cac:ResidenceAddress/cbc:CountrySubentityCode + cac:ResidenceAddress/cbc:StreetName + cac:ResidenceAddress/cbc:AdditionalStreetName + cac:ResidenceAddress/cac:AddressLine/cbc:Line + cac:ResidenceAddress/cbc:PostalZone + cac:ResidenceAddress/cbc:CityName + cac:ResidenceAddress/cac:Country/cbc:IdentificationCode + efac:Nationality/cbc:NationalityID + cac:Contact/cbc:Telefax + efac:FieldsPrivacy + + \ No newline at end of file diff --git a/src/test/resources/eforms-sdk-tests/tedefo-2768/valid/schematrons/static/validation-stage-1a.sch b/src/test/resources/eforms-sdk-tests/tedefo-2768/valid/schematrons/static/validation-stage-1a.sch new file mode 100644 index 0000000..9ab9877 --- /dev/null +++ b/src/test/resources/eforms-sdk-tests/tedefo-2768/valid/schematrons/static/validation-stage-1a.sch @@ -0,0 +1,21 @@ + + + + + rule|text|P-0001 + + + rule|text|P-0002 + + + + + rule|text|P-0004 + + + + + rule|text|P-0005 + + + diff --git a/src/test/resources/eforms-sdk-tests/tedefo-2768/valid/schematrons/static/validation-stage-1b-1.sch b/src/test/resources/eforms-sdk-tests/tedefo-2768/valid/schematrons/static/validation-stage-1b-1.sch new file mode 100644 index 0000000..e51be47 --- /dev/null +++ b/src/test/resources/eforms-sdk-tests/tedefo-2768/valid/schematrons/static/validation-stage-1b-1.sch @@ -0,0 +1,40 @@ + + + + + rule|text|ND-BusinessParty-1 + rule|text|ND-ContractingParty-1 + rule|text|ND-GazetteReference-1 + rule|text|ND-OperationType-1 + rule|text|ND-Part-1 + rule|text|ND-ProcedureProcurementScope-1 + rule|text|ND-ProcedureTenderingProcess-1 + rule|text|ND-RootExtension-1 + rule|text|ND-SenderContact-1 + + + rule|text|ND-Buyer-1 + + + rule|text|ND-ProcedureValueEstimate-1 + + + rule|text|ND-LotDistribution-1 + rule|text|ND-TendererQualificationRequest-1 + + + rule|text|ND-CrossBorderLawUnpublish-1 + + + rule|text|ND-ContractModification-1 + rule|text|ND-NoticeResult-1 + rule|text|ND-Organizations-1 + rule|text|ND-ReviewRequests-1 + + + rule|text|ND-Organization-1 + + + rule|text|ND-Company-1 + + diff --git a/src/test/resources/eforms-sdk-tests/tedefo-2768/valid/schematrons/static/validation-stage-1b-16.sch b/src/test/resources/eforms-sdk-tests/tedefo-2768/valid/schematrons/static/validation-stage-1b-16.sch new file mode 100644 index 0000000..67d8951 --- /dev/null +++ b/src/test/resources/eforms-sdk-tests/tedefo-2768/valid/schematrons/static/validation-stage-1b-16.sch @@ -0,0 +1,85 @@ + + + + + rule|text|ND-BusinessParty-16 + rule|text|ND-ContractingParty-16 + rule|text|ND-GazetteReference-16 + rule|text|ND-OperationType-16 + rule|text|ND-Part-16 + rule|text|ND-ProcedureProcurementScope-16 + rule|text|ND-ProcedureTenderingProcess-16 + rule|text|ND-ProcedureTerms-16 + rule|text|ND-RootExtension-16 + rule|text|ND-SenderContact-16 + + + rule|text|ND-Buyer-16 + + + rule|text|ND-LotProcurementScope-16 + rule|text|ND-LotTenderingProcess-16 + rule|text|ND-LotTenderingTerms-16 + + + rule|text|ND-AuctionTerms-16 + + + rule|text|ND-InterestExpressionReceptionPeriod-16 + rule|text|ND-PMCAnswersDeadline-16 + + + rule|text|ND-LotProcurementDocument-16 + rule|text|ND-LotReservedParticipation-16 + rule|text|ND-LotReviewTerms-16 + rule|text|ND-NonUBLTenderingTerms-16 + rule|text|ND-Participants-16 + rule|text|ND-PostAwardProcess-16 + rule|text|ND-SubcontractingObligation-16 + + + rule|text|ND-LotAwardCriterionNumberComplicatedUnpublish-16 + + + rule|text|ND-LotAwardCriterionTypeUnpublish-16 + + + rule|text|ND-LotAwardCriterionFixNumberUnpublish-16 + + + rule|text|ND-LotsGroupAwardCriterionNumberComplicatedUnpublish-16 + + + rule|text|ND-LotsGroupAwardCriterionTypeUnpublish-16 + + + rule|text|ND-LotsGroupAwardCriterionFixNumberUnpublish-16 + + + rule|text|ND-ProcedureTypeUnpublish-16 + + + rule|text|ND-ProcedureAcceleratedUnpublish-16 + + + rule|text|ND-TendererQualificationRequest-16 + + + rule|text|ND-CrossBorderLawUnpublish-16 + + + rule|text|ND-ExclusionGrounds-16 + + + rule|text|ND-ContractModification-16 + rule|text|ND-NoticeResult-16 + rule|text|ND-Organizations-16 + rule|text|ND-ReviewRequests-16 + + + rule|text|ND-Organization-16 + + + rule|text|ND-Company-16 + + diff --git a/src/test/resources/eu/europa/ted/eforms/sdk/analysis/cucumber/tedefo-2768.feature b/src/test/resources/eu/europa/ted/eforms/sdk/analysis/cucumber/tedefo-2768.feature new file mode 100644 index 0000000..58c1ea1 --- /dev/null +++ b/src/test/resources/eu/europa/ted/eforms/sdk/analysis/cucumber/tedefo-2768.feature @@ -0,0 +1,31 @@ +@tedefo-2768 +Feature: Schematron files - Consistency validation + TEDEFO-2768: Check schematron files are complete and consistent + Test files under "src/test/resources/eforms-sdk-tests/tedefo-2768" + + Background: + Given The following rules + | All expected phases are present | + | Every pattern is part of at least one phase | + | Every assert diagnostics is defined in the schematron file | + + Scenario: All schematron files are consistent + Given A "tedefo-2768" folder with "valid" files + When I load all schematron files + And I load all notice types + And I execute validation + Then I should get 0 SDK validation errors + + Scenario Outline: Some schematron files are inconsistent + Given A "tedefo-2768" folder with "invalid" files + When I load all schematron files + And I load all notice types + And I execute validation + Then Rule "" should have been fired + And I should get 5 SDK validation errors + + Examples: + | expected rule | + | All expected phases are present | + | Every pattern is part of at least one phase | + | Every assert diagnostics is defined in the schematron file | From dc1ae1664e835073ad7f046d935053f5cd9f4fe6 Mon Sep 17 00:00:00 2001 From: Bertrand Lorentz Date: Mon, 12 Aug 2024 10:35:09 +0200 Subject: [PATCH 07/22] schematron: Move calculation of missing diagnostics to Java code Doing this in Drools causes very high memory usage (over 5GB) when run on the SDK, probably because of the high number of asserts. --- .../sdk/analysis/fact/SchematronFileFact.java | 17 +++++++++++++++++ .../sdk/analysis/drools/schematronRules.drl | 5 ++--- 2 files changed, 19 insertions(+), 3 deletions(-) diff --git a/src/main/java/eu/europa/ted/eforms/sdk/analysis/fact/SchematronFileFact.java b/src/main/java/eu/europa/ted/eforms/sdk/analysis/fact/SchematronFileFact.java index 76be4ad..97140a7 100644 --- a/src/main/java/eu/europa/ted/eforms/sdk/analysis/fact/SchematronFileFact.java +++ b/src/main/java/eu/europa/ted/eforms/sdk/analysis/fact/SchematronFileFact.java @@ -46,6 +46,23 @@ public List getDuplicateAssertIds() { .collect(Collectors.toList()); } + /** + * Returns the list of diagnostic identifiers that are referenced in an assert but not defined by + * a diagnostic element. + * + * @return List of diagnostic identifiers missing a definition. + */ + public List getMissingDiagnostics() { + Set definedDiagnosticIds = getDiagnostics().stream() + .map(SchematronDiagnostic::getId) + .collect(Collectors.toSet()); + + return getAsserts().stream() + .map(SchematronAssert::getDiagnostics) + .filter(id -> !definedDiagnosticIds.contains(id)) + .collect(Collectors.toList()); + } + @Override public String getId() { return schematronFile.getPath().toString(); diff --git a/src/main/resources/eu/europa/ted/eforms/sdk/analysis/drools/schematronRules.drl b/src/main/resources/eu/europa/ted/eforms/sdk/analysis/drools/schematronRules.drl index 900e180..47d4c54 100644 --- a/src/main/resources/eu/europa/ted/eforms/sdk/analysis/drools/schematronRules.drl +++ b/src/main/resources/eu/europa/ted/eforms/sdk/analysis/drools/schematronRules.drl @@ -35,8 +35,7 @@ end rule "Every assert diagnostics is defined in the schematron file" when - /schematrons[ $sch: this, $schId: id ]/asserts[ $diagnosticId: diagnostics, diagnostics != null ] - not (exists /schematrons[ id == $schId ]/diagnostics[ id == $diagnosticId ]) + $missing : /schematrons[ $sch: this]/missingDiagnostics then - results.add(new ValidationResult($sch, "Schematron is missing diagnostic definitions for: " + $diagnosticId, ValidationStatusEnum.ERROR)); + results.add(new ValidationResult($sch, "Schematron is missing diagnostic definitions for: " + $missing, ValidationStatusEnum.ERROR)); end From 19259fb57b99adba8bcfe37c89265f163a014c06 Mon Sep 17 00:00:00 2001 From: Bertrand Lorentz Date: Fri, 30 Aug 2024 11:33:16 +0200 Subject: [PATCH 08/22] Output validation results earlier (TEDEFO-3685) Log errors and warning after each validator is run, to know earlier when problems are found. Move the slowest validator (EFX) to the end to not delay the others. The complete list of warnings and errors is still logged at the end, as it was before, to get everyting in one place. --- .../ted/eforms/sdk/analysis/SdkAnalyzer.java | 31 +++++++++++++------ .../sdk/analysis/validator/Validator.java | 17 ++++------ .../analysis/cucumber/SdkValidationSteps.java | 12 +++---- 3 files changed, 34 insertions(+), 26 deletions(-) diff --git a/src/main/java/eu/europa/ted/eforms/sdk/analysis/SdkAnalyzer.java b/src/main/java/eu/europa/ted/eforms/sdk/analysis/SdkAnalyzer.java index db535e2..676f056 100644 --- a/src/main/java/eu/europa/ted/eforms/sdk/analysis/SdkAnalyzer.java +++ b/src/main/java/eu/europa/ted/eforms/sdk/analysis/SdkAnalyzer.java @@ -2,8 +2,8 @@ import java.nio.file.Path; import java.util.ArrayList; -import java.util.Arrays; import java.util.List; +import java.util.Set; import org.apache.commons.lang3.StringUtils; import org.slf4j.Logger; import org.slf4j.LoggerFactory; @@ -13,6 +13,7 @@ import eu.europa.ted.eforms.sdk.analysis.validator.TextValidator; import eu.europa.ted.eforms.sdk.analysis.validator.Validator; import eu.europa.ted.eforms.sdk.analysis.validator.XmlSchemaValidator; +import eu.europa.ted.eforms.sdk.analysis.vo.ValidationResult; public class SdkAnalyzer { private static final Logger logger = LoggerFactory.getLogger(SdkAnalyzer.class); @@ -22,29 +23,41 @@ private SdkAnalyzer() {} public static int analyze(final Path sdkRoot) throws Exception { logger.info("Analyzing SDK under folder [{}]", sdkRoot); - List warnings = new ArrayList<>(); - List errors = new ArrayList<>(); + List warnings = new ArrayList<>(); + List errors = new ArrayList<>(); List validators = List.of( new XmlSchemaValidator(sdkRoot), - new EfxValidator(sdkRoot), new TextValidator(sdkRoot), new SchematronValidator(sdkRoot), - new SdkValidator(sdkRoot)); + new SdkValidator(sdkRoot), + new EfxValidator(sdkRoot)); for (Validator validator : validators) { + String validatorName = validator.getClass().getSimpleName(); + logger.info("Starting validation with {}", validatorName); validator.validate(); - warnings.addAll(Arrays.asList(validator.getWarnings())); - errors.addAll(Arrays.asList(validator.getErrors())); + + Set foundWarnings = validator.getWarnings(); + if (!foundWarnings.isEmpty()) { + logger.warn("Warnings from {}:\n{}", validatorName, StringUtils.join(foundWarnings, '\n')); + } + Set foundErrors = validator.getErrors(); + if (!foundErrors.isEmpty()) { + logger.error("Errors from {}:\n{}", validatorName, StringUtils.join(foundErrors, '\n')); + } + + warnings.addAll(foundWarnings); + errors.addAll(foundErrors); } if (!warnings.isEmpty() && logger.isWarnEnabled()) { - logger.warn("Validation warnings:\n{}", StringUtils.join(warnings, '\n')); + logger.warn("All validation warnings:\n{}", StringUtils.join(warnings, '\n')); logger.warn("Total number of validation warnings: {}", warnings.size()); } if (!errors.isEmpty() && logger.isErrorEnabled()) { - logger.error("Validation errors:\n{}", StringUtils.join(errors, '\n')); + logger.error("All validation errors:\n{}", StringUtils.join(errors, '\n')); logger.error("Total number of validation errors: {}", errors.size()); } diff --git a/src/main/java/eu/europa/ted/eforms/sdk/analysis/validator/Validator.java b/src/main/java/eu/europa/ted/eforms/sdk/analysis/validator/Validator.java index 88d531c..8ccf8f8 100644 --- a/src/main/java/eu/europa/ted/eforms/sdk/analysis/validator/Validator.java +++ b/src/main/java/eu/europa/ted/eforms/sdk/analysis/validator/Validator.java @@ -4,7 +4,6 @@ import java.util.Set; import java.util.stream.Collectors; import org.apache.commons.collections4.CollectionUtils; -import org.apache.commons.lang3.ArrayUtils; import eu.europa.ted.eforms.sdk.analysis.enums.ValidationStatusEnum; import eu.europa.ted.eforms.sdk.analysis.vo.ValidationResult; @@ -24,23 +23,19 @@ default Set getResults(EnumSet statuses) .collect(Collectors.toSet()); } - default String[] getWarnings() { - return getResults(EnumSet.of(ValidationStatusEnum.WARNING)).stream() - .map(ValidationResult::toString) - .toArray(String[]::new); + default Set getWarnings() { + return getResults(EnumSet.of(ValidationStatusEnum.WARNING)); } - default String[] getErrors() { - return getResults(EnumSet.of(ValidationStatusEnum.ERROR)).stream() - .map(ValidationResult::toString) - .toArray(String[]::new); + default Set getErrors() { + return getResults(EnumSet.of(ValidationStatusEnum.ERROR)); } default boolean hasWarnings() { - return ArrayUtils.isNotEmpty(getWarnings()); + return CollectionUtils.isNotEmpty(getWarnings()); } default boolean hasErrors() { - return ArrayUtils.isNotEmpty(getErrors()); + return CollectionUtils.isNotEmpty(getErrors()); } } diff --git a/src/test/java/eu/europa/ted/eforms/sdk/analysis/cucumber/SdkValidationSteps.java b/src/test/java/eu/europa/ted/eforms/sdk/analysis/cucumber/SdkValidationSteps.java index 17f40c8..ed7d5c3 100644 --- a/src/test/java/eu/europa/ted/eforms/sdk/analysis/cucumber/SdkValidationSteps.java +++ b/src/test/java/eu/europa/ted/eforms/sdk/analysis/cucumber/SdkValidationSteps.java @@ -262,32 +262,32 @@ public void rule_should_have_been_fired(String expectedRule) { @Then("^I should get (.*) SDK validation errors?$") public void i_should_get_sdk_validation_errors(int errorsCount) { - assertEquals(errorsCount, sdkValidator.getErrors().length); + assertEquals(errorsCount, sdkValidator.getErrors().size()); } @Then("^I should get (.*) SDK validation warnings?$") public void i_should_get_sdk_validation_warnings(int warningsCount) { - assertEquals(warningsCount, sdkValidator.getWarnings().length); + assertEquals(warningsCount, sdkValidator.getWarnings().size()); } @Then("^I should get (.*) EFX validation errors?$") public void i_should_get_efx_validation_errors(int errorsCount) { - assertEquals(errorsCount, efxValidator.getErrors().length); + assertEquals(errorsCount, efxValidator.getErrors().size()); } @Then("^I should get (.*) schema validation errors?$") public void i_should_get_schema_validation_errors(int errorsCount) { - assertEquals(errorsCount, schemaValidator.getErrors().length); + assertEquals(errorsCount, schemaValidator.getErrors().size()); } @Then("^I should get (.*) text validation errors?$") public void i_should_get_text_validation_errors(int errorsCount) { - assertEquals(errorsCount, textValidator.getErrors().length); + assertEquals(errorsCount, textValidator.getErrors().size()); } @Then("^I should get (.*) schematron validation errors?$") public void i_should_get_schematron_validation_errors(int errorsCount) { - assertEquals(errorsCount, schematronValidator.getErrors().length); + assertEquals(errorsCount, schematronValidator.getErrors().size()); } @Then("I should get not found exception for file {string}") From ab8fa33028bd9d7a416138e5958880612a33f1f9 Mon Sep 17 00:00:00 2001 From: Bertrand Lorentz Date: Tue, 3 Sep 2024 17:46:52 +0200 Subject: [PATCH 09/22] 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 10/22] 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 + + From 755a7d5ce222feeff8fc93e3b6b00957ea614cf4 Mon Sep 17 00:00:00 2001 From: Bertrand Lorentz Date: Thu, 5 Sep 2024 13:53:09 +0200 Subject: [PATCH 11/22] XmlSchemaValidator: Handle element not found in the schema (TEDEFO-3707) Add a validation error instead of failing with a NullPointerException. --- .../validator/XmlSchemaValidator.java | 80 +++++++++++++++---- 1 file changed, 64 insertions(+), 16 deletions(-) diff --git a/src/main/java/eu/europa/ted/eforms/sdk/analysis/validator/XmlSchemaValidator.java b/src/main/java/eu/europa/ted/eforms/sdk/analysis/validator/XmlSchemaValidator.java index f852756..38247a5 100644 --- a/src/main/java/eu/europa/ted/eforms/sdk/analysis/validator/XmlSchemaValidator.java +++ b/src/main/java/eu/europa/ted/eforms/sdk/analysis/validator/XmlSchemaValidator.java @@ -104,19 +104,43 @@ private void checkFieldRepeatability(Field field) { // If the field's relative XPath has several steps, it's the first that must be repeatable final QName fieldQName = buildQName(getFirstElementName(field.getXpathRelative())); + XmlSchemaElement fieldElement = schemaCollection.getElementByQName(fieldQName); + if (fieldElement == null) { + results.add(new ValidationResult(new FieldFact(field), + "XML element corresponding to the field is not present in the schema", ValidationStatusEnum.ERROR)); + // We can't check repeatability + return; + } + if (field.getParentNodeId().equals(ROOT_NODE_ID)) { // We don't know in which document root(s) the field can appear, so we look at all roots, // and if the element corresponding to the field can appear, it must be repeatable documentTypes.stream().forEach(dt -> { final QName root = new QName(dt.getNamespace(), dt.getRootElement()); - if (isDefinedUnder(fieldQName, root) && !canElementBeRepeatedUnder(fieldQName, root)) { + + XmlSchemaElement rootElement = schemaCollection.getElementByQName(root); + if (rootElement == null) { + results.add(new ValidationResult(new FieldFact(field), + "XML element corresponding to the root is not present in the schema", ValidationStatusEnum.ERROR)); + return; + } + + if (isDefinedUnder(fieldQName, root) && !canElementBeRepeatedUnder(fieldElement, rootElement)) { results.add(new ValidationResult(new FieldFact(field), "Field is repeatable but this is not allowed by the schema", ValidationStatusEnum.ERROR)); } }); } else { - final QName parent = buildQName(getLastElementName(field.getParentNode().getXpathRelative())); - if (!canElementBeRepeatedUnder(fieldQName, parent)) { + final QName parentQName = buildQName(getLastElementName(field.getParentNode().getXpathRelative())); + + XmlSchemaElement parentElement = schemaCollection.getElementByQName(parentQName); + if (parentElement == null) { + results.add(new ValidationResult(new FieldFact(field), + "XML element corresponding to the parent is not present in the schema", ValidationStatusEnum.ERROR)); + return; + } + + if (!canElementBeRepeatedUnder(fieldElement, parentElement)) { results.add(new ValidationResult(new FieldFact(field), "Field is repeatable but this is not allowed by the schema", ValidationStatusEnum.ERROR)); } @@ -138,19 +162,43 @@ private void checkNodeRepeatability(XmlStructureNode node) { // If the node's relative XPath has several steps, it's the first that must be repeatable final QName nodeQName = buildQName(getFirstElementName(node.getXpathRelative())); + XmlSchemaElement nodeElement = schemaCollection.getElementByQName(nodeQName); + if (nodeElement == null) { + results.add(new ValidationResult(new NodeFact(node), + "XML element corresponding to the node is not present in the schema", ValidationStatusEnum.ERROR)); + // We can't check repeatability + return; + } + XmlStructureNode parentNode = node.getParent(); if (parentNode.getId().equals(ROOT_NODE_ID)) { documentTypes.stream().forEach(dt -> { final QName root = new QName(dt.getNamespace(), dt.getRootElement()); - if (isDefinedUnder(nodeQName, root) && !canElementBeRepeatedUnder(nodeQName, root)) { + + XmlSchemaElement rootElement = schemaCollection.getElementByQName(root); + if (rootElement == null) { results.add(new ValidationResult(new NodeFact(node), - "Field is repeatable but this is not allowed by the schema", ValidationStatusEnum.ERROR)); + "XML element corresponding to the root is not present in the schema", ValidationStatusEnum.ERROR)); + return; + } + + if (isDefinedUnder(nodeQName, root) && !canElementBeRepeatedUnder(nodeElement, rootElement)) { + results.add(new ValidationResult(new NodeFact(node), + "Node is repeatable but this is not allowed by the schema", ValidationStatusEnum.ERROR)); } }); } else { final QName parentQName = buildQName(getLastElementName(parentNode.getXpathRelative())); - if (!canElementBeRepeatedUnder(nodeQName, parentQName)) { + + XmlSchemaElement parentElement = schemaCollection.getElementByQName(parentQName); + if (parentElement == null) { + results.add(new ValidationResult(new NodeFact(node), + "XML element corresponding to the parent is not present in the schema", ValidationStatusEnum.ERROR)); + return; + } + + if (!canElementBeRepeatedUnder(nodeElement, parentElement)) { results.add(new ValidationResult(new NodeFact(node), "Node is repeatable but this is not allowed by the schema", ValidationStatusEnum.ERROR)); } @@ -226,23 +274,23 @@ private boolean isDefinedUnder(final QName childQName, final QName parentQName) return found; } - /* - * Returns true if the elementQName is referenced in the schema somewhere under the type of - * parentQName, and this reference has maxOccurs > 1. + /** + * Returns true if "element" is referenced in the schema somewhere under the type of "parent", + * and this reference has maxOccurs > 1. * As an element can be at multiple locations in the descendants of a given element, this - * will just look at the closest occurence of elementQName. + * will just look at the closest occurence of "element". + * + * @param element The element to search for. + * @param parent The element under which to search + * @return True if the schema allows "element" to be repeated under "parent" */ - private boolean canElementBeRepeatedUnder(final QName elementQName, final QName parentQName) { + private boolean canElementBeRepeatedUnder(final XmlSchemaElement element, final XmlSchemaElement parent) { visited = new HashSet<>(); - XmlSchemaElement parent = schemaCollection.getElementByQName(parentQName); - - XmlSchemaElement element = schemaCollection.getElementByQName(elementQName); - long maxOccurs = findElementMaxOccursUnder(element, parent); if (maxOccurs < 0) { - throw new RuntimeException("Element not found: " + elementQName); + throw new RuntimeException("Element not found: " + element.getName()); } return (maxOccurs > 1); From bef1262ab09c9164460d33649b8f0e5a8ee36382 Mon Sep 17 00:00:00 2001 From: Bertrand Lorentz Date: Fri, 6 Sep 2024 16:53:40 +0200 Subject: [PATCH 12/22] pom: Fix property name to be consistent with all "version.*" properties --- pom.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pom.xml b/pom.xml index 9eae88c..92dc331 100644 --- a/pom.xml +++ b/pom.xml @@ -49,7 +49,7 @@ 2.14.1 4.0.0 4.0.4 - 1.37 + 1.37 5.9.2 1.4.14 3.9.1 @@ -168,12 +168,12 @@ org.openjdk.jmh jmh-core - ${jmh.version} + ${version.jmh} org.openjdk.jmh jmh-generator-annprocess - ${jmh.version} + ${version.jmh} provided From 30b28eb5d03c55f860505ec2c2a1483b81ee0f9d Mon Sep 17 00:00:00 2001 From: Bertrand Lorentz Date: Fri, 6 Sep 2024 17:57:57 +0200 Subject: [PATCH 13/22] pom: Remove all optional tags from dependencies These dependencies are not optional, they are used by all features. They are included in the full/shaded JAR with all other dependencies anyways. --- pom.xml | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/pom.xml b/pom.xml index 92dc331..dbe64a6 100644 --- a/pom.xml +++ b/pom.xml @@ -229,7 +229,6 @@ eu.europa.ted.eforms eforms-core-java - true eu.europa.ted.eforms @@ -240,12 +239,10 @@ org.apache.commons commons-collections4 - true org.apache.commons commons-lang3 - true @@ -264,29 +261,24 @@ org.drools drools-ruleunits-engine - true org.drools drools-model-compiler - true com.fasterxml.jackson.core jackson-annotations - true com.fasterxml.jackson.core jackson-core - true com.fasterxml.jackson.core jackson-databind - true com.fasterxml.jackson.datatype @@ -330,7 +322,6 @@ org.slf4j slf4j-api - true @@ -355,7 +346,6 @@ info.picocli picocli - true com.helger.schematron From f304ac458e5ad0675c6fe7e246a418926b817bd5 Mon Sep 17 00:00:00 2001 From: Bertrand Lorentz Date: Fri, 6 Sep 2024 18:05:31 +0200 Subject: [PATCH 14/22] pom: Remove dependency on drools-model-compiler It's a dependency of drools-ruleunits-engine, and we don't use anything from it directly, so we don't need to have it in our pom. --- pom.xml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/pom.xml b/pom.xml index dbe64a6..0217fc1 100644 --- a/pom.xml +++ b/pom.xml @@ -262,10 +262,6 @@ org.drools drools-ruleunits-engine - - org.drools - drools-model-compiler - From 38c7d3dc9047cc9de7cf9a422e3c8ebaa8259627 Mon Sep 17 00:00:00 2001 From: Bertrand Lorentz Date: Fri, 6 Sep 2024 18:15:16 +0200 Subject: [PATCH 15/22] pom: Build the full JAR as eforms-sdk-analyzer-*-all.jar Don't replace the original JAR with the full/shaded JAR, but create the full JAR with the "-all" suffix. --- pom.xml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 0217fc1..c6dfddf 100644 --- a/pom.xml +++ b/pom.xml @@ -442,7 +442,8 @@ false - false + true + all From c42b3253ab8d957b6f108e06af43f876b86819c4 Mon Sep 17 00:00:00 2001 From: Bertrand Lorentz Date: Fri, 6 Sep 2024 18:21:55 +0200 Subject: [PATCH 16/22] pom: Remove indication of finalName element It's is set to the default value, so we actually don't need to specify it. --- pom.xml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/pom.xml b/pom.xml index c6dfddf..e34661f 100644 --- a/pom.xml +++ b/pom.xml @@ -26,8 +26,6 @@ - ${project.artifactId}-${project.version} - UTF-8 2024-07-16T09:10:14Z @@ -384,8 +382,6 @@ - ${finalName} - From 58e77244634cf9152e04cb1150d02cbd32d01b6c Mon Sep 17 00:00:00 2001 From: Bertrand Lorentz Date: Mon, 9 Sep 2024 10:44:29 +0200 Subject: [PATCH 17/22] pom: Add metadata required to publish on Maven Central --- pom.xml | 26 ++++++++++++++++++++++++-- 1 file changed, 24 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index e34661f..cb3af82 100644 --- a/pom.xml +++ b/pom.xml @@ -7,10 +7,32 @@ 1.13.0-SNAPSHOT kjar - eforms-sdk-analyzer + eForms SDK Analyzer + + 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. + + https://docs.ted.europa.eu/eforms/latest/ + + + + European Union Public Licence, Version 1.2 + https://joinup.ec.europa.eu/sites/default/files/custom-page/attachment/2020-03/EUPL-1.2%20EN.txt + repo + + + + + + TED and EU Public Procurement Unit + OP-TED-DEVOPS@publications.europa.eu + Publications Office of the European Union + https://op.europa.eu/ + + - scm:git:https://github.com/OP-TED/eforms-sdk-analyzer.git + scm:git:git://github.com/OP-TED/eforms-sdk-analyzer.git https://github.com/OP-TED/eforms-sdk-analyzer From 6b32217d069308f78ac131f04424d1c612a7ed35 Mon Sep 17 00:00:00 2001 From: Bertrand Lorentz Date: Mon, 9 Sep 2024 15:49:45 +0200 Subject: [PATCH 18/22] pom: Update to publish to Maven Central --- pom.xml | 116 +++++++++++++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 110 insertions(+), 6 deletions(-) diff --git a/pom.xml b/pom.xml index cb3af82..6f5af56 100644 --- a/pom.xml +++ b/pom.xml @@ -37,13 +37,13 @@ + + ossrh + https://${sonatype.server.url}/content/repositories/snapshots + - github - GitHub Packages - https://maven.pkg.github.com/OP-TED/eforms-sdk-analyzer - - true - + ossrh + https://${sonatype.server.url}/service/local/staging/deploy/maven2/ @@ -51,6 +51,8 @@ UTF-8 2024-07-16T09:10:14Z + s01.oss.sonatype.org + 11 ${java.version} @@ -82,6 +84,11 @@ 3.13.0 3.6.0 + 3.2.5 + 3.10.0 + 3.3.1 + 3.2.5 + 1.6.14 @@ -411,16 +418,44 @@ maven-compiler-plugin ${version.compiler.plugin} + + maven-surefire-plugin + ${version.surefire.plugin} + + + maven-install-plugin + ${version.install.plugin} + org.apache.maven.plugins maven-shade-plugin ${version.shade.plugin} + + org.apache.maven.plugins + maven-source-plugin + ${version.source.plugin} + + + org.apache.maven.plugins + maven-javadoc-plugin + ${version.javadoc.plugin} + + + org.apache.maven.plugins + maven-gpg-plugin + ${version.gpg.plugin} + org.kie kie-maven-plugin ${version.drools} + + org.sonatype.plugins + nexus-staging-maven-plugin + ${version.nexus-staging.plugin} + @@ -430,6 +465,7 @@ kie-maven-plugin true + org.apache.maven.plugins maven-compiler-plugin @@ -448,6 +484,7 @@ + org.apache.maven.plugins maven-shade-plugin @@ -502,4 +539,71 @@ + + + + + + release + + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + attach-javadocs + + jar + + + + + + org.apache.maven.plugins + maven-gpg-plugin + + + sign-artifacts + verify + + sign + + + + + + + --pinentry-mode + loopback + + + + + org.sonatype.plugins + nexus-staging-maven-plugin + true + + ossrh + https://${sonatype.server.url}/ + true + + + + + + From f34da6e03cddcd445ef9ba9845ad0a834a26d74a Mon Sep 17 00:00:00 2001 From: Bertrand Lorentz Date: Mon, 9 Sep 2024 15:50:59 +0200 Subject: [PATCH 19/22] workflows: Update publish workflow to publish on Maven Central --- .github/workflows/publish.yml | 24 ++++++++++++++++++------ 1 file changed, 18 insertions(+), 6 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index b6d711b..d964a08 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -1,4 +1,5 @@ -name: Publish package to GitHub Packages +name: Publish package to the Maven Central Repository + on: push: branches: @@ -15,14 +16,25 @@ jobs: runs-on: ubuntu-latest permissions: contents: read - packages: write steps: - uses: actions/checkout@v4 - - uses: actions/setup-java@v4 + - name: Import GPG Key + uses: crazy-max/ghaction-import-gpg@v6 + with: + gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }} + passphrase: ${{ secrets.GPG_PASSPHRASE }} + - name: Set up Java for publishing to Maven Central Repository + uses: actions/setup-java@v4 with: java-version: '11' distribution: 'adopt' - - name: Publish package - run: mvn --batch-mode deploy + server-id: ossrh + server-username: MAVEN_USERNAME + server-password: MAVEN_PASSWORD + - name: Publish to the Maven Central Repository + run: mvn --batch-mode deploy -Prelease env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + MAVEN_GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }} + MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }} + MAVEN_PASSWORD: ${{ secrets.OSSRH_TOKEN }} + From 4203d364b1c99e723881141aef52a95cd9dac049 Mon Sep 17 00:00:00 2001 From: Bertrand Lorentz Date: Mon, 9 Sep 2024 16:18:10 +0200 Subject: [PATCH 20/22] pom: Add missing install plugin version --- pom.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/pom.xml b/pom.xml index 6f5af56..e8fddf3 100644 --- a/pom.xml +++ b/pom.xml @@ -85,6 +85,7 @@ 3.13.0 3.6.0 3.2.5 + 3.1.3 3.10.0 3.3.1 3.2.5 From 792f929308ae19117c591f187df3ae85c70649d9 Mon Sep 17 00:00:00 2001 From: Bertrand Lorentz Date: Fri, 4 Oct 2024 17:01:33 +0200 Subject: [PATCH 21/22] benchmark: Update notices used in the benchmark Use a notice with more lots for subtype 16, so that any slowdown is more noticeable. Update both notices to SDK 1.13.0, and fix most validation failures. --- src/main/resources/benchmark/notices/16.xml | 76814 +++++++++++++++++- src/main/resources/benchmark/notices/29.xml | 7972 +- 2 files changed, 79583 insertions(+), 5203 deletions(-) diff --git a/src/main/resources/benchmark/notices/16.xml b/src/main/resources/benchmark/notices/16.xml index bfec3f0..a9f1bcf 100644 --- a/src/main/resources/benchmark/notices/16.xml +++ b/src/main/resources/benchmark/notices/16.xml @@ -70,8 +70,8 @@ 2.3 - eforms-sdk-1.10 - 0491ebbe-4e45-4c38-8a4e-722a5159d809 + eforms-sdk-1.13 + 0491ebbe-4e85-4c38-8a4e-722a5158d809 b47fd31a-a9e4-4680-a50d-0e577ffcbdf3 2023-12-14Z 07:37:54Z @@ -94,18 +94,24 @@ - - - corruption - If any of the participants are corrupted then they are excluded from the tendering process - - + + + epo-procurement-document + + + + 2 + 2 + open + + false + - Poor Things SDK 1.10 + Poor Things 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. @@ -113,6 +119,14 @@ Poor Things premiered at the 80th Venice International Film Festival on Septembe 50000000 + + + LU000 + + LUX + + + LOT-0001 @@ -143,6 +157,11 @@ Poor Things premiered at the 80th Venice International Film Festival on Septembe res-pub-ser + + + epo-procurement-document + + not-known @@ -152,7 +171,19 @@ Poor Things premiered at the 80th Venice International Film Festival on Septembe required - + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -168,7 +199,7 @@ Poor Things premiered at the 80th Venice International Film Festival on Septembe - not-allowed + allowed true 2023-12-30+02:00 @@ -177,6 +208,9 @@ Poor Things premiered at the 80th Venice International Film Festival on Septembe true + + 3 + fa-mix @@ -186,7 +220,7 @@ Poor Things premiered at the 80th Venice International Film Festival on Septembe ABE LOT-0001 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] Development @@ -198,6 +232,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -232,6 +274,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -241,7 +288,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required - + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -257,7 +316,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -266,6 +325,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -275,7 +337,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0002 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] Development @@ -287,6 +349,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -321,6 +391,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -330,7 +405,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -346,7 +433,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -355,6 +442,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -364,7 +454,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0003 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -378,6 +468,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -412,6 +510,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -421,7 +524,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -437,7 +552,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -446,6 +561,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -455,7 +573,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0004 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -469,6 +587,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -503,6 +629,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -512,7 +643,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -528,7 +671,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -537,6 +680,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -546,7 +692,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0005 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -560,6 +706,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -594,6 +748,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -603,7 +762,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -619,7 +790,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -628,6 +799,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -637,7 +811,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0006 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -651,6 +825,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -685,6 +867,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -694,7 +881,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -710,7 +909,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -719,6 +918,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -728,7 +930,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0007 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -742,6 +944,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -776,6 +986,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -785,7 +1000,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -801,7 +1028,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -810,6 +1037,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -819,7 +1049,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0008 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -833,6 +1063,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -867,6 +1105,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -876,7 +1119,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -892,7 +1147,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -901,6 +1156,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -910,7 +1168,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0009 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -924,6 +1182,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -958,6 +1224,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -967,7 +1238,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -983,7 +1266,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -992,6 +1275,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -1001,7 +1287,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0010 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -1015,6 +1301,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -1049,6 +1343,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -1058,7 +1357,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -1074,7 +1385,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -1083,6 +1394,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -1092,7 +1406,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0011 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -1106,6 +1420,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -1140,6 +1462,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -1149,7 +1476,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -1165,7 +1504,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -1174,6 +1513,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -1183,7 +1525,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0012 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -1197,6 +1539,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -1231,6 +1581,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -1240,7 +1595,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -1256,7 +1623,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -1265,6 +1632,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -1274,7 +1644,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0013 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -1288,6 +1658,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -1322,6 +1700,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -1331,7 +1714,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -1347,7 +1742,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -1356,6 +1751,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -1365,7 +1763,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0014 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -1379,6 +1777,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -1413,6 +1819,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -1422,7 +1833,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -1438,7 +1861,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -1447,6 +1870,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -1456,7 +1882,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0015 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -1470,6 +1896,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -1504,6 +1938,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -1513,7 +1952,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -1529,7 +1980,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -1538,6 +1989,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -1547,7 +2001,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0016 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -1561,6 +2015,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -1595,6 +2057,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -1604,7 +2071,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -1620,7 +2099,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -1629,6 +2108,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -1638,7 +2120,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0017 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -1652,6 +2134,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -1686,6 +2176,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -1695,7 +2190,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -1711,7 +2218,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -1720,6 +2227,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -1729,7 +2239,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0018 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -1743,6 +2253,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -1777,6 +2295,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -1786,7 +2309,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -1802,7 +2337,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -1811,6 +2346,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -1820,7 +2358,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0019 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -1834,6 +2372,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -1868,6 +2414,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -1877,7 +2428,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -1893,7 +2456,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -1902,6 +2465,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -1911,7 +2477,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0020 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -1925,6 +2491,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -1959,6 +2533,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -1968,7 +2547,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -1984,7 +2575,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -1993,6 +2584,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -2002,7 +2596,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0021 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -2016,6 +2610,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -2050,6 +2652,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -2059,7 +2666,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -2075,7 +2694,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -2084,6 +2703,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -2093,7 +2715,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0022 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -2107,6 +2729,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -2141,6 +2771,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -2150,7 +2785,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -2166,7 +2813,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -2175,6 +2822,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -2184,7 +2834,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0023 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -2198,6 +2848,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -2232,6 +2890,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -2241,7 +2904,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -2257,7 +2932,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -2266,6 +2941,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -2275,7 +2953,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0024 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -2289,6 +2967,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -2323,6 +3009,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -2332,7 +3023,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -2348,7 +3051,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -2357,6 +3060,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -2366,7 +3072,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0025 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -2380,6 +3086,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -2414,6 +3128,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -2423,7 +3142,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -2439,7 +3170,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -2448,6 +3179,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -2457,7 +3191,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0026 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -2471,6 +3205,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -2505,6 +3247,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -2514,7 +3261,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -2530,7 +3289,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -2539,6 +3298,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -2548,7 +3310,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0027 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -2562,6 +3324,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -2596,6 +3366,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -2605,7 +3380,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -2621,7 +3408,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -2630,6 +3417,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -2639,7 +3429,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0028 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -2653,6 +3443,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -2687,6 +3485,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -2696,7 +3499,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -2712,7 +3527,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -2721,6 +3536,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -2730,7 +3548,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0029 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -2744,6 +3562,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -2778,6 +3604,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -2787,7 +3618,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -2803,7 +3646,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -2812,6 +3655,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -2821,7 +3667,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0030 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -2835,6 +3681,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -2869,6 +3723,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -2878,7 +3737,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -2894,7 +3765,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -2903,6 +3774,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -2912,7 +3786,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0031 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -2926,6 +3800,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -2960,6 +3842,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -2969,7 +3856,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -2985,7 +3884,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -2994,6 +3893,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -3003,7 +3905,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0032 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -3017,6 +3919,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -3051,6 +3961,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -3060,7 +3975,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -3076,7 +4003,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -3085,6 +4012,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -3094,7 +4024,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0033 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -3108,6 +4038,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -3142,6 +4080,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -3151,7 +4094,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -3167,7 +4122,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -3176,6 +4131,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -3185,7 +4143,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0034 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -3199,6 +4157,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -3233,6 +4199,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -3242,7 +4213,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -3258,7 +4241,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -3267,6 +4250,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -3276,7 +4262,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0035 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -3290,6 +4276,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -3324,6 +4318,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -3333,7 +4332,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -3349,7 +4360,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -3358,6 +4369,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -3367,7 +4381,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0036 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -3381,6 +4395,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -3415,6 +4437,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -3424,7 +4451,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -3440,7 +4479,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -3449,6 +4488,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -3458,7 +4500,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0037 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -3472,6 +4514,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -3506,6 +4556,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -3515,7 +4570,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -3531,7 +4598,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -3540,6 +4607,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -3549,7 +4619,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0038 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -3563,6 +4633,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -3597,6 +4675,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -3606,7 +4689,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -3622,7 +4717,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -3631,6 +4726,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -3640,7 +4738,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0039 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -3654,6 +4752,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -3688,6 +4794,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -3697,7 +4808,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -3713,7 +4836,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -3722,6 +4845,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -3731,7 +4857,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0040 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -3745,6 +4871,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -3779,6 +4913,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -3788,7 +4927,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -3804,7 +4955,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -3813,6 +4964,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -3822,7 +4976,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0041 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -3836,6 +4990,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -3870,6 +5032,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -3879,7 +5046,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -3895,7 +5074,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -3904,6 +5083,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -3913,7 +5095,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0042 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -3927,6 +5109,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -3961,6 +5151,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -3970,7 +5165,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -3986,7 +5193,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -3995,6 +5202,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -4004,7 +5214,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0043 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -4018,6 +5228,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -4052,6 +5270,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -4061,7 +5284,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -4077,7 +5312,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -4086,6 +5321,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -4095,7 +5333,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0044 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -4109,6 +5347,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -4143,95 +5389,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser - - not-known - - - not-allowed - - - required - - - - - TPO-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 + epo-procurement-document @@ -4243,7 +5403,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -4259,7 +5431,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -4268,6 +5440,128 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0045 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0046 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + fa-mix @@ -4277,7 +5571,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0046 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -4291,6 +5585,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -4325,6 +5627,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -4334,7 +5641,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -4350,7 +5669,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -4359,6 +5678,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -4368,7 +5690,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0047 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -4382,6 +5704,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -4416,6 +5746,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -4425,7 +5760,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -4441,7 +5788,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -4450,6 +5797,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -4459,7 +5809,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0048 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -4473,6 +5823,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -4507,6 +5865,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -4516,7 +5879,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -4532,7 +5907,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -4541,6 +5916,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -4550,7 +5928,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0049 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -4564,6 +5942,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -4598,6 +5984,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -4607,7 +5998,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -4623,7 +6026,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -4632,6 +6035,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -4641,7 +6047,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0050 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -4655,6 +6061,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -4689,6 +6103,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -4698,7 +6117,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -4714,7 +6145,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -4723,6 +6154,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -4732,7 +6166,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0051 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -4746,6 +6180,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -4780,6 +6222,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -4789,7 +6236,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -4805,7 +6264,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -4814,6 +6273,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -4823,7 +6285,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0052 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -4837,6 +6299,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -4871,6 +6341,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -4880,7 +6355,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -4896,7 +6383,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -4905,6 +6392,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -4914,7 +6404,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0053 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -4928,6 +6418,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -4962,6 +6460,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -4971,7 +6474,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -4987,7 +6502,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -4996,6 +6511,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -5005,7 +6523,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0054 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -5019,6 +6537,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -5053,6 +6579,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -5062,7 +6593,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -5078,7 +6621,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -5087,6 +6630,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -5096,7 +6642,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0055 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -5110,6 +6656,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -5144,6 +6698,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -5153,7 +6712,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -5169,7 +6740,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -5178,6 +6749,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -5187,7 +6761,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0056 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -5201,6 +6775,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -5235,6 +6817,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -5244,7 +6831,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -5260,7 +6859,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -5269,6 +6868,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -5278,7 +6880,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0057 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -5292,6 +6894,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -5326,6 +6936,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -5335,7 +6950,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -5351,7 +6978,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -5360,6 +6987,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -5369,7 +6999,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0058 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -5383,6 +7013,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -5417,6 +7055,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -5426,7 +7069,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -5442,7 +7097,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -5451,6 +7106,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -5460,7 +7118,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0059 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -5474,6 +7132,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -5508,6 +7174,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -5517,7 +7188,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -5533,7 +7216,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -5542,6 +7225,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -5551,7 +7237,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0060 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -5565,6 +7251,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -5599,6 +7293,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -5608,7 +7307,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -5624,7 +7335,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -5633,6 +7344,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -5642,7 +7356,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0061 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -5656,6 +7370,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -5690,6 +7412,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -5699,7 +7426,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -5715,7 +7454,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -5724,6 +7463,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -5733,7 +7475,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0062 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -5747,6 +7489,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -5781,6 +7531,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -5790,7 +7545,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -5806,7 +7573,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -5815,6 +7582,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -5824,7 +7594,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0063 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -5838,6 +7608,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -5872,6 +7650,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -5881,7 +7664,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -5897,7 +7692,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -5906,6 +7701,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -5915,7 +7713,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0064 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -5929,6 +7727,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -5963,6 +7769,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -5972,7 +7783,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -5988,7 +7811,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -5997,6 +7820,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -6006,7 +7832,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0065 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -6020,6 +7846,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -6054,6 +7888,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -6063,7 +7902,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -6079,7 +7930,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -6088,6 +7939,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -6097,7 +7951,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0066 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -6111,6 +7965,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -6145,6 +8007,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -6154,7 +8021,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -6170,7 +8049,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -6179,6 +8058,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -6188,7 +8070,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0067 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -6202,6 +8084,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -6236,6 +8126,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -6245,7 +8140,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -6261,7 +8168,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -6270,6 +8177,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -6279,7 +8189,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0068 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -6293,6 +8203,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -6327,6 +8245,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -6336,7 +8259,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -6352,7 +8287,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -6361,6 +8296,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -6370,7 +8308,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0069 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -6384,6 +8322,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -6418,6 +8364,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -6427,7 +8378,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -6443,7 +8406,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -6452,6 +8415,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -6461,7 +8427,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0070 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -6475,6 +8441,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -6509,6 +8483,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -6518,7 +8497,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -6534,7 +8525,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -6543,6 +8534,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -6552,7 +8546,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0071 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -6566,6 +8560,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -6600,6 +8602,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -6609,7 +8616,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -6625,7 +8644,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -6634,6 +8653,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -6643,7 +8665,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0072 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -6657,6 +8679,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -6691,6 +8721,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -6700,7 +8735,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -6716,7 +8763,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -6725,6 +8772,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -6734,7 +8784,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0073 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -6748,6 +8798,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -6782,6 +8840,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -6791,7 +8854,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -6807,7 +8882,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -6816,6 +8891,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -6825,7 +8903,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0074 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -6839,6 +8917,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -6873,6 +8959,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -6882,7 +8973,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -6898,7 +9001,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -6907,6 +9010,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -6916,7 +9022,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0075 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -6930,6 +9036,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -6964,6 +9078,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -6973,7 +9092,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -6989,7 +9120,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -6998,6 +9129,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -7007,7 +9141,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0076 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -7021,6 +9155,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -7055,6 +9197,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -7064,7 +9211,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -7080,7 +9239,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -7089,6 +9248,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -7098,7 +9260,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0077 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -7112,6 +9274,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -7146,6 +9316,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -7155,7 +9330,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -7171,7 +9358,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -7180,6 +9367,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -7189,7 +9379,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0078 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -7203,6 +9393,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -7237,6 +9435,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -7246,7 +9449,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -7262,7 +9477,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -7271,6 +9486,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -7280,7 +9498,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0079 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -7294,6 +9512,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -7328,6 +9554,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -7337,7 +9568,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -7353,7 +9596,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -7362,6 +9605,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -7371,7 +9617,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0080 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -7385,6 +9631,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -7419,6 +9673,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -7428,7 +9687,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -7444,7 +9715,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -7453,6 +9724,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -7462,7 +9736,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0081 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -7476,6 +9750,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -7510,6 +9792,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -7519,7 +9806,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -7535,7 +9834,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -7544,6 +9843,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -7553,7 +9855,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0082 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -7567,6 +9869,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -7601,6 +9911,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -7610,7 +9925,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -7626,7 +9953,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -7635,6 +9962,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -7644,7 +9974,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0083 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -7658,6 +9988,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -7692,6 +10030,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -7701,7 +10044,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -7717,7 +10072,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -7726,6 +10081,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -7735,7 +10093,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0084 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -7749,6 +10107,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -7783,6 +10149,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -7792,7 +10163,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -7808,7 +10191,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -7817,6 +10200,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -7826,7 +10212,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0085 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -7840,6 +10226,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -7874,6 +10268,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -7883,7 +10282,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -7899,7 +10310,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -7908,6 +10319,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -7917,7 +10331,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0086 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -7931,6 +10345,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -7965,6 +10387,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -7974,7 +10401,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -7990,7 +10429,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -7999,6 +10438,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -8008,7 +10450,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0087 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -8022,6 +10464,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -8056,6 +10506,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -8065,7 +10520,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -8081,7 +10548,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -8090,6 +10557,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -8099,7 +10569,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0088 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -8113,6 +10583,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -8147,6 +10625,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -8156,7 +10639,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -8172,7 +10667,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -8181,6 +10676,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -8190,7 +10688,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0089 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -8204,6 +10702,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -8238,6 +10744,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -8247,7 +10758,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -8263,7 +10786,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -8272,6 +10795,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -8281,7 +10807,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0090 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -8295,6 +10821,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -8329,6 +10863,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -8338,7 +10877,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -8354,7 +10905,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -8363,6 +10914,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -8372,7 +10926,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0091 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -8386,6 +10940,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -8420,6 +10982,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -8429,7 +10996,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -8445,7 +11024,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -8454,6 +11033,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -8463,7 +11045,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0092 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -8477,6 +11059,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -8511,6 +11101,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -8520,7 +11115,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -8536,7 +11143,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -8545,6 +11152,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -8554,7 +11164,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0093 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -8568,6 +11178,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -8602,6 +11220,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -8611,7 +11234,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -8627,7 +11262,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -8636,6 +11271,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -8645,7 +11283,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0094 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -8659,6 +11297,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -8693,6 +11339,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -8702,7 +11353,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -8718,7 +11381,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -8727,6 +11390,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -8736,7 +11402,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0095 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -8750,6 +11416,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -8784,6 +11458,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -8793,7 +11472,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -8809,7 +11500,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -8818,6 +11509,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -8827,7 +11521,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0096 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -8841,6 +11535,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -8875,6 +11577,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -8884,7 +11591,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -8900,7 +11619,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -8909,6 +11628,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -8918,7 +11640,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0097 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -8932,6 +11654,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -8966,6 +11696,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -8975,7 +11710,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -8991,7 +11738,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -9000,6 +11747,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -9009,7 +11759,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0098 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -9023,6 +11773,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -9057,6 +11815,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -9066,7 +11829,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -9082,7 +11857,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -9091,6 +11866,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -9100,7 +11878,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0099 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -9114,6 +11892,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -9148,6 +11934,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -9157,7 +11948,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -9173,7 +11976,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -9182,6 +11985,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -9191,7 +11997,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0100 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -9205,6 +12011,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -9239,6 +12053,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -9248,7 +12067,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -9264,7 +12095,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -9273,6 +12104,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -9282,7 +12116,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0101 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -9296,6 +12130,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -9330,6 +12172,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -9339,7 +12186,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -9355,7 +12214,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -9364,6 +12223,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -9373,7 +12235,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0102 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -9387,6 +12249,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -9421,6 +12291,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -9430,7 +12305,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -9446,7 +12333,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -9455,6 +12342,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -9464,7 +12354,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0103 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -9478,6 +12368,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -9512,6 +12410,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -9521,7 +12424,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -9537,7 +12452,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -9546,6 +12461,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -9555,7 +12473,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0104 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -9569,6 +12487,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -9603,6 +12529,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -9612,7 +12543,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -9628,7 +12571,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -9637,6 +12580,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -9646,7 +12592,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0105 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -9660,6 +12606,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -9694,6 +12648,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -9703,7 +12662,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -9719,7 +12690,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -9728,6 +12699,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -9737,7 +12711,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0106 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -9751,6 +12725,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -9785,6 +12767,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -9794,7 +12781,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -9810,7 +12809,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -9819,6 +12818,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -9828,7 +12830,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0107 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -9842,6 +12844,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -9876,6 +12886,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -9885,7 +12900,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -9901,7 +12928,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -9910,6 +12937,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -9919,7 +12949,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0108 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -9933,6 +12963,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -9967,6 +13005,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -9976,7 +13019,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -9992,7 +13047,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -10001,6 +13056,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -10010,7 +13068,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0109 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -10024,6 +13082,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -10058,6 +13124,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -10067,7 +13138,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -10083,7 +13166,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -10092,6 +13175,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -10101,7 +13187,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0110 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -10115,6 +13201,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -10149,6 +13243,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -10158,7 +13257,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -10174,7 +13285,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -10183,6 +13294,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -10192,7 +13306,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0111 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -10206,6 +13320,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -10240,6 +13362,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -10249,7 +13376,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -10265,7 +13404,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -10274,6 +13413,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -10283,7 +13425,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0112 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -10297,6 +13439,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -10331,6 +13481,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -10340,7 +13495,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -10356,7 +13523,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -10365,6 +13532,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -10374,7 +13544,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0113 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -10388,6 +13558,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -10422,6 +13600,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -10431,7 +13614,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -10447,7 +13642,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -10456,6 +13651,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -10465,7 +13663,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0114 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -10479,6 +13677,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -10513,6 +13719,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -10522,7 +13733,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -10538,7 +13761,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -10547,6 +13770,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -10556,7 +13782,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0115 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -10570,6 +13796,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -10604,6 +13838,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -10613,7 +13852,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -10629,7 +13880,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -10638,6 +13889,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -10647,7 +13901,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0116 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -10661,6 +13915,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -10695,6 +13957,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -10704,7 +13971,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -10720,7 +13999,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -10729,6 +14008,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -10738,7 +14020,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0117 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -10752,6 +14034,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -10786,6 +14076,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -10795,7 +14090,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -10811,7 +14118,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -10820,6 +14127,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -10829,7 +14139,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0118 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -10843,6 +14153,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -10877,6 +14195,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -10886,7 +14209,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -10902,7 +14237,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -10911,6 +14246,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -10920,7 +14258,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0119 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -10934,6 +14272,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -10968,6 +14314,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -10977,7 +14328,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -10993,7 +14356,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -11002,6 +14365,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -11011,7 +14377,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0120 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -11025,6 +14391,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -11059,6 +14433,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -11068,7 +14447,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -11084,7 +14475,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -11093,6 +14484,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -11102,7 +14496,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0121 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -11116,6 +14510,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -11150,6 +14552,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -11159,7 +14566,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -11175,7 +14594,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -11184,6 +14603,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -11193,7 +14615,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0122 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -11207,6 +14629,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -11241,6 +14671,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -11250,7 +14685,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -11266,7 +14713,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -11275,6 +14722,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -11284,7 +14734,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0123 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -11298,6 +14748,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -11332,6 +14790,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -11341,7 +14804,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -11357,7 +14832,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -11366,6 +14841,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -11375,7 +14853,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0124 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -11389,6 +14867,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -11423,6 +14909,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -11432,7 +14923,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -11448,7 +14951,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -11457,6 +14960,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -11466,7 +14972,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0125 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -11480,6 +14986,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -11514,6 +15028,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -11523,7 +15042,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -11539,7 +15070,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -11548,6 +15079,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -11557,7 +15091,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0126 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -11571,6 +15105,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -11605,6 +15147,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -11614,7 +15161,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -11630,7 +15189,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -11639,6 +15198,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -11648,7 +15210,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0127 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -11662,6 +15224,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -11696,6 +15266,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -11705,7 +15280,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -11721,7 +15308,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -11730,6 +15317,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -11739,7 +15329,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0128 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -11753,6 +15343,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -11787,6 +15385,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -11796,7 +15399,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -11812,7 +15427,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -11821,6 +15436,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -11830,7 +15448,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0129 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -11844,6 +15462,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -11878,6 +15504,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -11887,7 +15518,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -11903,7 +15546,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -11912,6 +15555,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -11921,7 +15567,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0130 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -11935,6 +15581,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -11969,95 +15623,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser - - not-known - - - not-allowed - - - required - - - - - TPO-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 + epo-procurement-document @@ -12069,7 +15637,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -12085,7 +15665,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -12094,6 +15674,128 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0131 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0132 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + fa-mix @@ -12103,7 +15805,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0132 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -12117,6 +15819,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -12151,6 +15861,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -12160,7 +15875,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -12176,7 +15903,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -12185,6 +15912,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -12194,7 +15924,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0133 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -12208,6 +15938,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -12242,6 +15980,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -12251,7 +15994,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -12267,7 +16022,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -12276,6 +16031,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -12285,7 +16043,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0134 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -12299,6 +16057,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -12333,6 +16099,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -12342,7 +16113,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -12358,7 +16141,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -12367,6 +16150,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -12376,7 +16162,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0135 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -12390,6 +16176,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -12424,6 +16218,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -12433,7 +16232,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -12449,7 +16260,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -12458,6 +16269,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -12467,7 +16281,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0136 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -12481,6 +16295,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -12515,6 +16337,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -12524,7 +16351,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -12540,7 +16379,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -12549,6 +16388,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -12558,7 +16400,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0137 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -12572,6 +16414,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -12606,6 +16456,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -12615,7 +16470,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -12631,7 +16498,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -12640,6 +16507,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -12649,7 +16519,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0138 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -12663,6 +16533,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -12697,6 +16575,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -12706,7 +16589,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -12722,7 +16617,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -12731,6 +16626,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -12740,7 +16638,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0139 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -12754,6 +16652,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -12788,6 +16694,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -12797,7 +16708,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -12813,7 +16736,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -12822,6 +16745,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -12831,7 +16757,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0140 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -12845,6 +16771,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -12879,6 +16813,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -12888,7 +16827,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -12904,7 +16855,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -12913,6 +16864,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -12922,7 +16876,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0141 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -12936,6 +16890,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -12970,6 +16932,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -12979,7 +16946,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -12995,7 +16974,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -13004,6 +16983,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -13013,7 +16995,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0142 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -13027,6 +17009,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -13061,6 +17051,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -13070,7 +17065,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -13086,7 +17093,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -13095,6 +17102,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -13104,7 +17114,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0143 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -13118,6 +17128,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -13152,6 +17170,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -13161,7 +17184,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -13177,7 +17212,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -13186,6 +17221,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -13195,7 +17233,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0144 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -13209,6 +17247,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -13243,6 +17289,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -13252,7 +17303,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -13268,7 +17331,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -13277,6 +17340,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -13286,7 +17352,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0145 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -13300,6 +17366,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -13334,6 +17408,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -13343,7 +17422,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -13359,7 +17450,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -13368,6 +17459,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -13377,7 +17471,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0146 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -13391,6 +17485,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -13425,6 +17527,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -13434,7 +17541,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -13450,7 +17569,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -13459,6 +17578,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -13468,7 +17590,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0147 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -13482,6 +17604,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -13516,6 +17646,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -13525,7 +17660,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -13541,7 +17688,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -13550,6 +17697,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -13559,7 +17709,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0148 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -13573,6 +17723,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -13607,6 +17765,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -13616,7 +17779,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -13632,7 +17807,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -13641,6 +17816,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -13650,7 +17828,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0149 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -13664,6 +17842,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -13698,6 +17884,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -13707,7 +17898,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -13723,7 +17926,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -13732,6 +17935,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -13741,7 +17947,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0150 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -13755,6 +17961,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -13789,6 +18003,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -13798,7 +18017,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -13814,7 +18045,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -13823,6 +18054,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -13832,7 +18066,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0151 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -13846,6 +18080,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -13880,6 +18122,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -13889,7 +18136,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -13905,7 +18164,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -13914,6 +18173,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -13923,7 +18185,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0152 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -13937,6 +18199,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -13971,6 +18241,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -13980,7 +18255,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -13996,7 +18283,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -14005,6 +18292,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -14014,7 +18304,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0153 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -14028,6 +18318,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -14062,6 +18360,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -14071,7 +18374,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -14087,7 +18402,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -14096,6 +18411,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -14105,7 +18423,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0154 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -14119,6 +18437,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -14153,6 +18479,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -14162,7 +18493,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -14178,7 +18521,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -14187,6 +18530,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -14196,7 +18542,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0155 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -14210,6 +18556,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -14244,6 +18598,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -14253,7 +18612,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -14269,7 +18640,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -14278,6 +18649,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -14287,7 +18661,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0156 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -14301,6 +18675,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -14335,6 +18717,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -14344,7 +18731,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -14360,7 +18759,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -14369,6 +18768,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -14378,7 +18780,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0157 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -14392,6 +18794,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -14426,6 +18836,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -14435,7 +18850,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -14451,7 +18878,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -14460,6 +18887,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -14469,7 +18899,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0158 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -14483,6 +18913,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -14517,6 +18955,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -14526,7 +18969,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -14542,7 +18997,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -14551,6 +19006,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -14560,7 +19018,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0159 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -14574,6 +19032,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -14608,6 +19074,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -14617,7 +19088,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -14633,7 +19116,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -14642,6 +19125,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -14651,7 +19137,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0160 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -14665,6 +19151,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -14699,6 +19193,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -14708,7 +19207,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -14724,7 +19235,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -14733,6 +19244,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -14742,7 +19256,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0161 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -14756,6 +19270,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -14790,6 +19312,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -14799,7 +19326,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -14815,7 +19354,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -14824,6 +19363,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -14833,7 +19375,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0162 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -14847,6 +19389,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -14881,6 +19431,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -14890,7 +19445,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -14906,7 +19473,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -14915,6 +19482,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -14924,7 +19494,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0163 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -14938,6 +19508,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -14972,6 +19550,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -14981,7 +19564,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -14997,7 +19592,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -15006,6 +19601,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -15015,7 +19613,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0164 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -15029,6 +19627,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -15063,6 +19669,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -15072,7 +19683,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -15088,7 +19711,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -15097,6 +19720,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -15106,7 +19732,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0165 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -15120,6 +19746,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -15154,6 +19788,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -15163,7 +19802,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -15179,7 +19830,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -15188,6 +19839,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -15197,7 +19851,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0166 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -15211,6 +19865,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -15245,6 +19907,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -15254,7 +19921,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -15270,7 +19949,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -15279,6 +19958,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -15288,7 +19970,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0167 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -15302,6 +19984,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -15336,6 +20026,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -15345,7 +20040,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -15361,7 +20068,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -15370,6 +20077,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -15379,7 +20089,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0168 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -15393,6 +20103,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -15427,6 +20145,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -15436,7 +20159,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -15452,7 +20187,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -15461,6 +20196,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -15470,7 +20208,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0169 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -15484,6 +20222,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -15518,6 +20264,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -15527,7 +20278,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -15543,7 +20306,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -15552,6 +20315,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -15561,7 +20327,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0170 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -15575,6 +20341,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -15609,6 +20383,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -15618,7 +20397,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -15634,7 +20425,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -15643,6 +20434,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -15652,7 +20446,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0171 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -15666,6 +20460,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -15700,6 +20502,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -15709,7 +20516,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -15725,7 +20544,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -15734,6 +20553,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -15743,7 +20565,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0172 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -15757,6 +20579,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -15791,6 +20621,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -15800,7 +20635,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -15816,7 +20663,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -15825,6 +20672,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -15834,7 +20684,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0173 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -15848,6 +20698,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -15882,6 +20740,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -15891,7 +20754,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -15907,7 +20782,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -15916,6 +20791,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -15925,7 +20803,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0174 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -15939,6 +20817,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -15973,6 +20859,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -15982,7 +20873,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -15998,7 +20901,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -16007,6 +20910,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -16016,7 +20922,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0175 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -16030,6 +20936,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -16064,6 +20978,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -16073,7 +20992,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -16089,7 +21020,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -16098,6 +21029,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -16107,7 +21041,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0176 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -16121,6 +21055,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -16155,6 +21097,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -16164,7 +21111,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -16180,7 +21139,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -16189,6 +21148,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -16198,7 +21160,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0177 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -16212,6 +21174,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -16246,6 +21216,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -16255,7 +21230,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -16271,7 +21258,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -16280,6 +21267,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -16289,7 +21279,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0178 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -16303,6 +21293,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -16337,6 +21335,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -16346,7 +21349,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -16362,7 +21377,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -16371,6 +21386,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -16380,7 +21398,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0179 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -16394,6 +21412,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -16428,6 +21454,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -16437,7 +21468,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -16453,7 +21496,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -16462,6 +21505,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -16471,7 +21517,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0180 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -16485,6 +21531,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -16519,6 +21573,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -16528,7 +21587,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -16544,7 +21615,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -16553,6 +21624,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -16562,7 +21636,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0181 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -16576,6 +21650,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -16610,6 +21692,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -16619,7 +21706,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -16635,7 +21734,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -16644,6 +21743,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -16653,7 +21755,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0182 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -16667,6 +21769,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -16701,6 +21811,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -16710,7 +21825,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -16726,7 +21853,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -16735,6 +21862,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -16744,7 +21874,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0183 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -16758,6 +21888,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -16792,6 +21930,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -16801,7 +21944,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -16817,7 +21972,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -16826,6 +21981,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -16835,7 +21993,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0184 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -16849,6 +22007,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -16883,6 +22049,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -16892,7 +22063,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -16908,7 +22091,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -16917,6 +22100,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -16926,7 +22112,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0185 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -16940,6 +22126,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -16974,6 +22168,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -16983,7 +22182,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -16999,7 +22210,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -17008,6 +22219,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -17017,7 +22231,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0186 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -17031,6 +22245,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -17065,6 +22287,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -17074,7 +22301,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -17090,7 +22329,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -17099,6 +22338,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -17108,7 +22350,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0187 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -17122,6 +22364,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -17156,6 +22406,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -17165,7 +22420,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -17181,7 +22448,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -17190,6 +22457,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -17199,7 +22469,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0188 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -17213,6 +22483,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -17247,6 +22525,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -17256,7 +22539,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -17272,7 +22567,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -17281,6 +22576,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -17290,7 +22588,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0189 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -17304,6 +22602,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -17338,6 +22644,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -17347,7 +22658,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -17363,7 +22686,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -17372,6 +22695,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -17381,7 +22707,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0190 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -17395,6 +22721,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -17429,6 +22763,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -17438,7 +22777,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -17454,7 +22805,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -17463,6 +22814,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -17472,7 +22826,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0191 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -17486,6 +22840,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -17520,6 +22882,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -17529,7 +22896,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -17545,7 +22924,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -17554,6 +22933,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -17563,7 +22945,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0192 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -17577,6 +22959,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -17611,6 +23001,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -17620,7 +23015,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -17636,7 +23043,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -17645,6 +23052,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -17654,7 +23064,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0193 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -17668,6 +23078,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -17702,6 +23120,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -17711,7 +23134,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -17727,7 +23162,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -17736,6 +23171,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -17745,7 +23183,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0194 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -17759,6 +23197,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -17793,6 +23239,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -17802,7 +23253,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -17818,7 +23281,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -17827,6 +23290,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -17836,7 +23302,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0195 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -17850,6 +23316,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -17884,6 +23358,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -17893,7 +23372,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -17909,7 +23400,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -17918,6 +23409,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -17927,7 +23421,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0196 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -17941,6 +23435,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -17975,6 +23477,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -17984,7 +23491,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -18000,7 +23519,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -18009,6 +23528,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -18018,7 +23540,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0197 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -18032,6 +23554,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -18066,6 +23596,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -18075,7 +23610,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -18091,7 +23638,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -18100,6 +23647,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -18109,7 +23659,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0198 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -18123,6 +23673,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -18157,6 +23715,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -18166,7 +23729,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -18182,7 +23757,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -18191,6 +23766,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -18200,7 +23778,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0199 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -18214,6 +23792,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -18248,6 +23834,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -18257,7 +23848,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -18273,7 +23876,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -18282,6 +23885,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -18291,7 +23897,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0200 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -18305,6 +23911,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -18339,6 +23953,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -18348,7 +23967,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -18364,7 +23995,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -18373,6 +24004,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -18382,7 +24016,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0201 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -18396,6 +24030,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -18430,6 +24072,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -18439,7 +24086,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -18455,7 +24114,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -18464,6 +24123,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -18473,7 +24135,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0202 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -18487,6 +24149,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -18521,6 +24191,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -18530,7 +24205,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -18546,7 +24233,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -18555,6 +24242,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -18564,7 +24254,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0203 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -18578,6 +24268,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -18612,6 +24310,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -18621,7 +24324,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -18637,7 +24352,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -18646,6 +24361,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -18655,7 +24373,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0204 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -18669,6 +24387,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -18703,6 +24429,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -18712,7 +24443,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -18728,7 +24471,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -18737,6 +24480,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -18746,7 +24492,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0205 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -18760,6 +24506,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -18794,6 +24548,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -18803,7 +24562,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -18819,7 +24590,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -18828,6 +24599,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -18837,7 +24611,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0206 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -18851,6 +24625,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -18885,6 +24667,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -18894,7 +24681,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -18910,7 +24709,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -18919,6 +24718,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -18928,7 +24730,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0207 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -18942,6 +24744,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -18976,6 +24786,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -18985,7 +24800,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -19001,7 +24828,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -19010,6 +24837,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -19019,7 +24849,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0208 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -19033,6 +24863,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -19067,6 +24905,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -19076,7 +24919,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -19092,7 +24947,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -19101,6 +24956,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -19110,7 +24968,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0209 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -19124,6 +24982,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -19158,6 +25024,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -19167,7 +25038,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -19183,7 +25066,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -19192,6 +25075,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -19201,7 +25087,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0210 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -19215,6 +25101,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -19249,6 +25143,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -19258,7 +25157,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -19274,7 +25185,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -19283,6 +25194,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -19292,7 +25206,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0211 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -19306,6 +25220,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -19340,6 +25262,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -19349,7 +25276,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -19365,7 +25304,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -19374,6 +25313,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -19383,7 +25325,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0212 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -19397,6 +25339,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -19431,6 +25381,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -19440,7 +25395,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -19456,7 +25423,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -19465,6 +25432,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -19474,7 +25444,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0213 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -19488,6 +25458,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -19522,6 +25500,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -19531,7 +25514,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -19547,7 +25542,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -19556,6 +25551,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -19565,7 +25563,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0214 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -19579,6 +25577,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -19613,6 +25619,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -19622,7 +25633,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -19638,7 +25661,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -19647,6 +25670,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -19656,7 +25682,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0215 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -19670,6 +25696,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -19704,6 +25738,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -19713,7 +25752,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -19729,7 +25780,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -19738,6 +25789,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -19747,7 +25801,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0216 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -19761,6 +25815,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -19795,95 +25857,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser - - not-known - - - not-allowed - - - required - - - - - TPO-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 + epo-procurement-document @@ -19895,7 +25871,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -19911,7 +25899,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -19920,6 +25908,128 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0217 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0218 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + fa-mix @@ -19929,7 +26039,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0218 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -19943,6 +26053,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -19977,6 +26095,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -19986,7 +26109,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -20002,7 +26137,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -20011,6 +26146,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -20020,7 +26158,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0219 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -20034,6 +26172,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -20068,6 +26214,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -20077,7 +26228,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -20093,7 +26256,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -20102,6 +26265,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -20111,7 +26277,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0220 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -20125,6 +26291,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -20159,6 +26333,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -20168,7 +26347,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -20184,7 +26375,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -20193,6 +26384,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -20202,7 +26396,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0221 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -20216,6 +26410,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -20250,6 +26452,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -20259,7 +26466,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -20275,7 +26494,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -20284,6 +26503,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -20293,7 +26515,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0222 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -20307,6 +26529,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -20341,6 +26571,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -20350,7 +26585,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -20366,7 +26613,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -20375,6 +26622,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -20384,7 +26634,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0223 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -20398,6 +26648,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -20432,6 +26690,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -20441,7 +26704,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -20457,7 +26732,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -20466,6 +26741,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -20475,7 +26753,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0224 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -20489,6 +26767,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -20523,6 +26809,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -20532,7 +26823,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -20548,7 +26851,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -20557,6 +26860,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -20566,7 +26872,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0225 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -20580,6 +26886,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -20614,6 +26928,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -20623,7 +26942,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -20639,7 +26970,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -20648,6 +26979,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -20657,7 +26991,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0226 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -20671,6 +27005,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -20705,6 +27047,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -20714,7 +27061,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -20730,7 +27089,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -20739,6 +27098,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -20748,7 +27110,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0227 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -20762,6 +27124,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -20796,6 +27166,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -20805,7 +27180,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -20821,7 +27208,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -20830,6 +27217,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -20839,7 +27229,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0228 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -20853,6 +27243,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -20887,6 +27285,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -20896,7 +27299,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -20912,7 +27327,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -20921,6 +27336,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -20930,7 +27348,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0229 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -20944,6 +27362,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -20978,6 +27404,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -20987,7 +27418,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -21003,7 +27446,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -21012,6 +27455,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -21021,7 +27467,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0230 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -21035,6 +27481,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -21069,6 +27523,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -21078,7 +27537,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -21094,7 +27565,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -21103,6 +27574,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -21112,7 +27586,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0231 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -21126,6 +27600,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -21160,6 +27642,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -21169,7 +27656,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -21185,7 +27684,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -21194,6 +27693,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -21203,7 +27705,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0232 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -21217,6 +27719,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -21251,6 +27761,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -21260,7 +27775,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -21276,7 +27803,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -21285,6 +27812,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -21294,7 +27824,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0233 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -21308,6 +27838,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -21342,6 +27880,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -21351,7 +27894,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -21367,7 +27922,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -21376,6 +27931,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -21385,7 +27943,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0234 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -21399,6 +27957,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -21433,6 +27999,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -21442,7 +28013,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -21458,7 +28041,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -21467,6 +28050,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -21476,7 +28062,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0235 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -21490,6 +28076,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -21524,6 +28118,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -21533,7 +28132,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -21549,7 +28160,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -21558,6 +28169,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -21567,7 +28181,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0236 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -21581,6 +28195,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -21615,6 +28237,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -21624,7 +28251,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -21640,7 +28279,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -21649,6 +28288,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -21658,7 +28300,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0237 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -21672,6 +28314,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -21706,6 +28356,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -21715,7 +28370,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -21731,7 +28398,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -21740,6 +28407,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -21749,7 +28419,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0238 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -21763,6 +28433,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -21797,6 +28475,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -21806,7 +28489,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -21822,7 +28517,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -21831,6 +28526,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -21840,7 +28538,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0239 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -21854,6 +28552,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -21888,6 +28594,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -21897,7 +28608,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -21913,7 +28636,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -21922,6 +28645,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -21931,7 +28657,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0240 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -21945,6 +28671,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -21979,6 +28713,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -21988,7 +28727,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -22004,7 +28755,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -22013,6 +28764,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -22022,7 +28776,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0241 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -22036,6 +28790,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -22070,6 +28832,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -22079,7 +28846,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -22095,7 +28874,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -22104,6 +28883,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -22113,7 +28895,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0242 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -22127,6 +28909,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -22161,6 +28951,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -22170,7 +28965,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -22186,7 +28993,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -22195,6 +29002,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -22204,7 +29014,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0243 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -22218,6 +29028,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -22252,6 +29070,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -22261,7 +29084,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -22277,7 +29112,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -22286,6 +29121,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -22295,7 +29133,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0244 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -22309,6 +29147,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -22343,6 +29189,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -22352,7 +29203,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -22368,7 +29231,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -22377,6 +29240,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -22386,7 +29252,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0245 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -22400,6 +29266,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -22434,6 +29308,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -22443,7 +29322,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -22459,7 +29350,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -22468,6 +29359,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -22477,7 +29371,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0246 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -22491,6 +29385,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -22525,6 +29427,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -22534,7 +29441,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -22550,7 +29469,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -22559,6 +29478,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -22568,7 +29490,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0247 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -22582,6 +29504,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -22616,6 +29546,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -22625,7 +29560,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -22641,7 +29588,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -22650,6 +29597,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -22659,7 +29609,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0248 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -22673,6 +29623,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -22707,6 +29665,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -22716,7 +29679,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -22732,7 +29707,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -22741,6 +29716,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -22750,7 +29728,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0249 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -22764,6 +29742,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -22798,6 +29784,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -22807,7 +29798,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -22823,7 +29826,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -22832,6 +29835,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -22841,7 +29847,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0250 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -22855,6 +29861,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -22889,6 +29903,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -22898,7 +29917,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -22914,7 +29945,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -22923,6 +29954,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -22932,7 +29966,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0251 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -22946,6 +29980,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -22980,6 +30022,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -22989,7 +30036,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -23005,7 +30064,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -23014,6 +30073,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -23023,7 +30085,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0252 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -23037,6 +30099,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -23071,6 +30141,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -23080,7 +30155,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -23096,7 +30183,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -23105,6 +30192,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -23114,7 +30204,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0253 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -23128,6 +30218,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -23162,6 +30260,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -23171,7 +30274,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -23187,7 +30302,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -23196,6 +30311,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -23205,7 +30323,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0254 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -23219,6 +30337,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -23253,6 +30379,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -23262,7 +30393,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -23278,7 +30421,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -23287,6 +30430,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -23296,7 +30442,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0255 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -23310,6 +30456,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -23344,6 +30498,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -23353,7 +30512,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -23369,7 +30540,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -23378,6 +30549,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -23387,7 +30561,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0256 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -23401,6 +30575,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -23435,6 +30617,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -23444,7 +30631,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -23460,7 +30659,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -23469,6 +30668,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -23478,7 +30680,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0257 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -23492,6 +30694,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -23526,6 +30736,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -23535,7 +30750,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -23551,7 +30778,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -23560,6 +30787,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -23569,7 +30799,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0258 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -23583,6 +30813,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -23617,6 +30855,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -23626,7 +30869,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -23642,7 +30897,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -23651,6 +30906,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -23660,7 +30918,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0259 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -23674,6 +30932,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -23708,6 +30974,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -23717,7 +30988,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -23733,7 +31016,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -23742,6 +31025,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -23751,7 +31037,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0260 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -23765,6 +31051,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -23799,6 +31093,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -23808,7 +31107,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -23824,7 +31135,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -23833,6 +31144,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -23842,7 +31156,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0261 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -23856,6 +31170,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -23890,6 +31212,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -23899,7 +31226,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -23915,7 +31254,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -23924,6 +31263,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -23933,7 +31275,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0262 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -23947,6 +31289,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -23981,6 +31331,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -23990,7 +31345,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -24006,7 +31373,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -24015,6 +31382,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -24024,7 +31394,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0263 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -24038,6 +31408,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -24072,6 +31450,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -24081,7 +31464,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -24097,7 +31492,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -24106,6 +31501,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -24115,7 +31513,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0264 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -24129,6 +31527,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -24163,6 +31569,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -24172,7 +31583,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -24188,7 +31611,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -24197,6 +31620,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -24206,7 +31632,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0265 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -24220,6 +31646,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -24254,6 +31688,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -24263,7 +31702,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -24279,7 +31730,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -24288,6 +31739,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -24297,7 +31751,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0266 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -24311,6 +31765,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -24345,6 +31807,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -24354,7 +31821,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -24370,7 +31849,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -24379,6 +31858,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -24388,7 +31870,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0267 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -24402,6 +31884,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -24436,6 +31926,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -24445,7 +31940,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -24461,7 +31968,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -24470,6 +31977,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -24479,7 +31989,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0268 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -24493,6 +32003,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -24527,6 +32045,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -24536,7 +32059,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -24552,7 +32087,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -24561,6 +32096,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -24570,7 +32108,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0269 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -24584,6 +32122,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -24618,6 +32164,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -24627,7 +32178,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -24643,7 +32206,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -24652,6 +32215,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -24661,7 +32227,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0270 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -24675,6 +32241,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -24709,6 +32283,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -24718,7 +32297,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -24734,7 +32325,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -24743,6 +32334,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -24752,7 +32346,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0271 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -24766,6 +32360,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -24800,6 +32402,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -24809,7 +32416,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -24825,7 +32444,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -24834,6 +32453,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -24843,7 +32465,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0272 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -24857,6 +32479,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -24891,6 +32521,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -24900,7 +32535,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -24916,7 +32563,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -24925,6 +32572,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -24934,7 +32584,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0273 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -24948,6 +32598,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -24982,6 +32640,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -24991,7 +32654,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -25007,7 +32682,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -25016,6 +32691,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -25025,7 +32703,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0274 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -25039,6 +32717,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -25073,6 +32759,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -25082,7 +32773,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -25098,7 +32801,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -25107,6 +32810,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -25116,7 +32822,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0275 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -25130,6 +32836,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -25164,6 +32878,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -25173,7 +32892,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -25189,7 +32920,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -25198,6 +32929,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -25207,7 +32941,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0276 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -25221,6 +32955,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -25255,6 +32997,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -25264,7 +33011,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -25280,7 +33039,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -25289,6 +33048,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -25298,7 +33060,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0277 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -25312,6 +33074,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -25346,6 +33116,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -25355,7 +33130,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -25371,7 +33158,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -25380,6 +33167,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -25389,7 +33179,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0278 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -25403,6 +33193,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -25437,6 +33235,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -25446,7 +33249,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -25462,7 +33277,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -25471,6 +33286,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -25480,7 +33298,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0279 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -25494,6 +33312,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -25528,6 +33354,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -25537,7 +33368,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -25553,7 +33396,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -25562,6 +33405,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -25571,7 +33417,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0280 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -25585,6 +33431,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -25619,6 +33473,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -25628,7 +33487,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -25644,7 +33515,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -25653,6 +33524,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -25662,7 +33536,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0281 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -25676,6 +33550,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -25710,6 +33592,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -25719,7 +33606,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -25735,7 +33634,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -25744,6 +33643,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -25753,7 +33655,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0282 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -25767,6 +33669,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -25801,6 +33711,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -25810,7 +33725,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -25826,7 +33753,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -25835,6 +33762,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -25844,7 +33774,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0283 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -25858,6 +33788,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -25892,6 +33830,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -25901,7 +33844,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -25917,7 +33872,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -25926,6 +33881,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -25935,7 +33893,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0284 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -25949,6 +33907,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -25983,6 +33949,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -25992,7 +33963,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -26008,7 +33991,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -26017,6 +34000,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -26026,7 +34012,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0285 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -26040,6 +34026,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -26074,6 +34068,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -26083,7 +34082,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -26099,7 +34110,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -26108,6 +34119,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -26117,7 +34131,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0286 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -26131,6 +34145,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -26165,6 +34187,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -26174,7 +34201,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -26190,7 +34229,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -26199,6 +34238,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -26208,7 +34250,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0287 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -26222,6 +34264,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -26256,6 +34306,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -26265,7 +34320,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -26281,7 +34348,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -26290,6 +34357,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -26299,7 +34369,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0288 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -26313,6 +34383,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -26347,6 +34425,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -26356,7 +34439,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -26372,7 +34467,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -26381,6 +34476,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -26390,7 +34488,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0289 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -26404,6 +34502,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -26438,6 +34544,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -26447,7 +34558,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -26463,7 +34586,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -26472,6 +34595,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -26481,7 +34607,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0290 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -26495,6 +34621,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -26529,6 +34663,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -26538,7 +34677,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -26554,7 +34705,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -26563,6 +34714,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -26572,7 +34726,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0291 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -26586,6 +34740,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -26620,6 +34782,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -26629,7 +34796,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -26645,7 +34824,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -26654,6 +34833,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -26663,7 +34845,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0292 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -26677,6 +34859,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -26711,6 +34901,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -26720,7 +34915,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -26736,7 +34943,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -26745,6 +34952,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -26754,7 +34964,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0293 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -26768,6 +34978,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -26802,6 +35020,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -26811,7 +35034,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -26827,7 +35062,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -26836,6 +35071,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -26845,7 +35083,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0294 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -26859,6 +35097,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -26893,6 +35139,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -26902,7 +35153,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -26918,7 +35181,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -26927,6 +35190,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -26936,7 +35202,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0295 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -26950,6 +35216,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -26984,6 +35258,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -26993,7 +35272,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -27009,7 +35300,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -27018,6 +35309,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -27027,7 +35321,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0296 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -27041,6 +35335,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -27075,6 +35377,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -27084,7 +35391,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -27100,7 +35419,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -27109,6 +35428,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -27118,7 +35440,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0297 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -27132,6 +35454,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -27166,6 +35496,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -27175,7 +35510,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -27191,7 +35538,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -27200,6 +35547,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -27209,7 +35559,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0298 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -27223,6 +35573,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -27257,6 +35615,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -27266,7 +35629,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -27282,7 +35657,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -27291,6 +35666,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -27300,7 +35678,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0299 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -27314,6 +35692,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -27348,6 +35734,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -27357,7 +35748,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -27373,7 +35776,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -27382,6 +35785,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -27391,7 +35797,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0300 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -27405,6 +35811,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -27439,6 +35853,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -27448,7 +35867,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -27464,7 +35895,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -27473,6 +35904,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -27482,7 +35916,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0301 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -27496,6 +35930,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -27530,6 +35972,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -27539,7 +35986,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -27555,7 +36014,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -27564,6 +36023,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -27573,7 +36035,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0302 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -27587,6 +36049,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -27621,95 +36091,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser - - not-known - - - not-allowed - - - required - - - - - TPO-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 + epo-procurement-document @@ -27721,7 +36105,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -27737,7 +36133,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -27746,6 +36142,128 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0303 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0304 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + fa-mix @@ -27755,7 +36273,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0304 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -27769,6 +36287,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -27803,6 +36329,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -27812,7 +36343,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -27828,7 +36371,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -27837,6 +36380,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -27846,7 +36392,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0305 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -27860,6 +36406,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -27894,6 +36448,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -27903,7 +36462,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -27919,7 +36490,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -27928,6 +36499,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -27937,7 +36511,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0306 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -27951,6 +36525,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -27985,6 +36567,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -27994,7 +36581,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -28010,7 +36609,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -28019,6 +36618,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -28028,7 +36630,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0307 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -28042,6 +36644,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -28076,6 +36686,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -28085,7 +36700,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -28101,7 +36728,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -28110,6 +36737,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -28119,7 +36749,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0308 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -28133,6 +36763,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -28167,6 +36805,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -28176,7 +36819,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -28192,7 +36847,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -28201,6 +36856,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -28210,7 +36868,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0309 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -28224,6 +36882,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -28258,6 +36924,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -28267,7 +36938,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -28283,7 +36966,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -28292,6 +36975,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -28301,7 +36987,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0310 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -28315,6 +37001,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -28349,6 +37043,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -28358,7 +37057,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -28374,7 +37085,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -28383,6 +37094,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -28392,7 +37106,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0311 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -28406,6 +37120,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -28440,6 +37162,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -28449,7 +37176,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -28465,7 +37204,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -28474,6 +37213,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -28483,7 +37225,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0312 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -28497,6 +37239,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -28531,6 +37281,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -28540,7 +37295,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -28556,7 +37323,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -28565,6 +37332,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -28574,7 +37344,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0313 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -28588,6 +37358,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -28622,6 +37400,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -28631,7 +37414,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -28647,7 +37442,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -28656,6 +37451,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -28665,7 +37463,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0314 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -28679,6 +37477,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -28713,6 +37519,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -28722,7 +37533,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -28738,7 +37561,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -28747,6 +37570,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -28756,7 +37582,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0315 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -28770,6 +37596,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -28804,6 +37638,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -28813,7 +37652,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -28829,7 +37680,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -28838,6 +37689,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -28847,7 +37701,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0316 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -28861,6 +37715,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -28895,6 +37757,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -28904,7 +37771,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -28920,7 +37799,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -28929,6 +37808,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -28938,7 +37820,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0317 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -28952,6 +37834,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -28986,6 +37876,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -28995,7 +37890,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -29011,7 +37918,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -29020,6 +37927,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -29029,7 +37939,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0318 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -29043,6 +37953,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -29077,6 +37995,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -29086,7 +38009,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -29102,7 +38037,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -29111,6 +38046,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -29120,7 +38058,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0319 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -29134,6 +38072,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -29168,6 +38114,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -29177,7 +38128,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -29193,7 +38156,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -29202,6 +38165,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -29211,7 +38177,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0320 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -29225,6 +38191,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -29259,6 +38233,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -29268,7 +38247,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -29284,7 +38275,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -29293,6 +38284,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -29302,7 +38296,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0321 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -29316,6 +38310,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -29350,6 +38352,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -29359,7 +38366,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -29375,7 +38394,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -29384,6 +38403,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -29393,7 +38415,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0322 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -29407,6 +38429,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -29441,6 +38471,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -29450,7 +38485,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -29466,7 +38513,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -29475,6 +38522,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -29484,7 +38534,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0323 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -29498,6 +38548,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -29532,6 +38590,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -29541,7 +38604,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -29557,7 +38632,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -29566,6 +38641,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -29575,7 +38653,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0324 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -29589,6 +38667,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -29623,6 +38709,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -29632,7 +38723,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -29648,7 +38751,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -29657,6 +38760,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -29666,7 +38772,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0325 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -29680,6 +38786,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -29714,6 +38828,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -29723,7 +38842,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -29739,7 +38870,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -29748,6 +38879,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -29757,7 +38891,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0326 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -29771,6 +38905,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -29805,6 +38947,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -29814,7 +38961,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -29830,7 +38989,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -29839,6 +38998,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -29848,7 +39010,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0327 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -29862,6 +39024,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -29896,6 +39066,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -29905,7 +39080,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -29921,7 +39108,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -29930,6 +39117,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -29939,7 +39129,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0328 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -29953,6 +39143,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -29987,6 +39185,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -29996,7 +39199,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -30012,7 +39227,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -30021,6 +39236,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -30030,7 +39248,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0329 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -30044,6 +39262,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -30078,6 +39304,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -30087,7 +39318,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -30103,7 +39346,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -30112,6 +39355,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -30121,7 +39367,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0330 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -30135,6 +39381,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -30169,6 +39423,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -30178,7 +39437,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -30194,7 +39465,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -30203,6 +39474,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -30212,7 +39486,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0331 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -30226,6 +39500,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -30260,6 +39542,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -30269,7 +39556,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -30285,7 +39584,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -30294,6 +39593,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -30303,7 +39605,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0332 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -30317,6 +39619,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -30351,6 +39661,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -30360,7 +39675,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -30376,7 +39703,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -30385,6 +39712,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -30394,7 +39724,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0333 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -30408,6 +39738,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -30442,6 +39780,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -30451,7 +39794,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -30467,7 +39822,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -30476,6 +39831,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -30485,7 +39843,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0334 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -30499,6 +39857,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -30533,6 +39899,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -30542,7 +39913,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -30558,7 +39941,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -30567,6 +39950,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -30576,7 +39962,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0335 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -30590,6 +39976,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -30624,6 +40018,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -30633,7 +40032,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -30649,7 +40060,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -30658,6 +40069,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -30667,7 +40081,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0336 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -30681,6 +40095,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -30715,6 +40137,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -30724,7 +40151,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -30740,7 +40179,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -30749,6 +40188,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -30758,7 +40200,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0337 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -30772,6 +40214,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -30806,6 +40256,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -30815,7 +40270,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -30831,7 +40298,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -30840,6 +40307,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -30849,7 +40319,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0338 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -30863,6 +40333,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -30897,6 +40375,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -30906,7 +40389,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -30922,7 +40417,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -30931,6 +40426,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -30940,7 +40438,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0339 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -30954,6 +40452,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -30988,6 +40494,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -30997,7 +40508,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -31013,7 +40536,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -31022,6 +40545,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -31031,7 +40557,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0340 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -31045,6 +40571,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -31079,6 +40613,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -31088,7 +40627,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -31104,7 +40655,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -31113,6 +40664,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -31122,7 +40676,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0341 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -31136,6 +40690,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -31170,6 +40732,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -31179,7 +40746,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -31195,7 +40774,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -31204,6 +40783,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -31213,7 +40795,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0342 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -31227,6 +40809,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -31261,6 +40851,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -31270,7 +40865,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -31286,7 +40893,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -31295,6 +40902,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -31304,7 +40914,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0343 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -31318,6 +40928,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -31352,6 +40970,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -31361,7 +40984,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -31377,7 +41012,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -31386,6 +41021,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -31395,7 +41033,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0344 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -31409,6 +41047,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -31443,6 +41089,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -31452,7 +41103,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -31468,7 +41131,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -31477,6 +41140,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -31486,7 +41152,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0345 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -31500,6 +41166,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -31534,6 +41208,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -31543,7 +41222,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -31559,7 +41250,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -31568,6 +41259,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -31577,7 +41271,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0346 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -31591,6 +41285,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -31625,6 +41327,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -31634,7 +41341,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -31650,7 +41369,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -31659,6 +41378,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -31668,7 +41390,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0347 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -31682,6 +41404,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -31716,6 +41446,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -31725,7 +41460,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -31741,7 +41488,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -31750,6 +41497,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -31759,7 +41509,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0348 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -31773,6 +41523,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -31807,6 +41565,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -31816,7 +41579,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -31832,7 +41607,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -31841,6 +41616,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -31850,7 +41628,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0349 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -31864,6 +41642,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -31898,6 +41684,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -31907,7 +41698,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -31923,7 +41726,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -31932,6 +41735,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -31941,7 +41747,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0350 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -31955,6 +41761,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -31989,6 +41803,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -31998,7 +41817,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -32014,7 +41845,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -32023,6 +41854,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -32032,7 +41866,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0351 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -32046,6 +41880,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -32080,6 +41922,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -32089,7 +41936,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -32105,7 +41964,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -32114,6 +41973,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -32123,7 +41985,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0352 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -32137,6 +41999,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -32171,6 +42041,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -32180,7 +42055,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -32196,7 +42083,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -32205,6 +42092,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -32214,7 +42104,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0353 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -32228,6 +42118,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -32262,6 +42160,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -32271,7 +42174,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -32287,7 +42202,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -32296,6 +42211,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -32305,7 +42223,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0354 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -32319,6 +42237,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -32353,6 +42279,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -32362,7 +42293,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -32378,7 +42321,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -32387,6 +42330,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -32396,7 +42342,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0355 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -32410,6 +42356,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -32444,6 +42398,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -32453,7 +42412,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -32469,7 +42440,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -32478,6 +42449,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -32487,7 +42461,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0356 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -32501,6 +42475,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -32535,6 +42517,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -32544,7 +42531,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -32560,7 +42559,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -32569,6 +42568,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -32578,7 +42580,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0357 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -32592,6 +42594,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -32626,6 +42636,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -32635,7 +42650,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -32651,7 +42678,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -32660,6 +42687,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -32669,7 +42699,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0358 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -32683,6 +42713,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -32717,6 +42755,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -32726,7 +42769,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -32742,7 +42797,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -32751,6 +42806,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -32760,7 +42818,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0359 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -32774,6 +42832,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -32808,6 +42874,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -32817,7 +42888,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -32833,7 +42916,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -32842,6 +42925,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -32851,7 +42937,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0360 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -32865,6 +42951,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -32899,6 +42993,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -32908,7 +43007,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -32924,7 +43035,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -32933,6 +43044,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -32942,7 +43056,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0361 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -32956,6 +43070,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -32990,6 +43112,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -32999,7 +43126,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -33015,7 +43154,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -33024,6 +43163,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -33033,7 +43175,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0362 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -33047,6 +43189,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -33081,6 +43231,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -33090,7 +43245,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -33106,7 +43273,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -33115,6 +43282,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -33124,7 +43294,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0363 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -33138,6 +43308,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -33172,6 +43350,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -33181,7 +43364,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -33197,7 +43392,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -33206,6 +43401,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -33215,7 +43413,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0364 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -33229,6 +43427,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -33263,6 +43469,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -33272,7 +43483,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -33288,7 +43511,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -33297,6 +43520,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -33306,7 +43532,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0365 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -33320,6 +43546,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -33354,6 +43588,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -33363,7 +43602,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -33379,7 +43630,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -33388,6 +43639,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -33397,7 +43651,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0366 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -33411,6 +43665,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -33445,6 +43707,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -33454,7 +43721,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -33470,7 +43749,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -33479,6 +43758,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -33488,7 +43770,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0367 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -33502,6 +43784,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -33536,6 +43826,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -33545,7 +43840,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -33561,7 +43868,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -33570,6 +43877,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -33579,7 +43889,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0368 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -33593,6 +43903,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -33627,6 +43945,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -33636,7 +43959,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -33652,7 +43987,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -33661,6 +43996,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -33670,7 +44008,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0369 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -33684,6 +44022,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -33718,6 +44064,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -33727,7 +44078,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -33743,7 +44106,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -33752,6 +44115,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -33761,7 +44127,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0370 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -33775,6 +44141,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -33809,6 +44183,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -33818,7 +44197,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -33834,7 +44225,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -33843,6 +44234,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -33852,7 +44246,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0371 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -33866,6 +44260,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -33900,6 +44302,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -33909,7 +44316,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -33925,7 +44344,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -33934,6 +44353,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -33943,7 +44365,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0372 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -33957,6 +44379,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -33991,6 +44421,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -34000,7 +44435,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -34016,7 +44463,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -34025,6 +44472,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -34034,7 +44484,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0373 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -34048,6 +44498,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -34082,6 +44540,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -34091,7 +44554,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -34107,7 +44582,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -34116,6 +44591,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -34125,7 +44603,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0374 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -34139,6 +44617,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -34173,6 +44659,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -34182,7 +44673,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -34198,7 +44701,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -34207,6 +44710,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -34216,7 +44722,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0375 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -34230,6 +44736,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -34264,6 +44778,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -34273,7 +44792,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -34289,7 +44820,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -34298,6 +44829,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -34307,7 +44841,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0376 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -34321,6 +44855,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -34355,6 +44897,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -34364,7 +44911,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -34380,7 +44939,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -34389,6 +44948,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -34398,7 +44960,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0377 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -34412,6 +44974,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -34446,6 +45016,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -34455,7 +45030,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -34471,7 +45058,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -34480,6 +45067,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -34489,7 +45079,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0378 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -34503,6 +45093,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -34537,6 +45135,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -34546,7 +45149,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -34562,7 +45177,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -34571,6 +45186,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -34580,7 +45198,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0379 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -34594,6 +45212,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -34628,6 +45254,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -34637,7 +45268,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -34653,7 +45296,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -34662,6 +45305,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -34671,7 +45317,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0380 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -34685,6 +45331,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -34719,6 +45373,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -34728,7 +45387,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -34744,7 +45415,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -34753,6 +45424,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -34762,7 +45436,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0381 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -34776,6 +45450,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -34810,6 +45492,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -34819,7 +45506,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -34835,7 +45534,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -34844,6 +45543,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -34853,7 +45555,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0382 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -34867,6 +45569,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -34901,6 +45611,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -34910,7 +45625,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -34926,7 +45653,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -34935,6 +45662,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -34944,7 +45674,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0383 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -34958,6 +45688,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -34992,6 +45730,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -35001,7 +45744,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -35017,7 +45772,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -35026,6 +45781,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -35035,7 +45793,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0384 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -35049,6 +45807,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -35083,6 +45849,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -35092,7 +45863,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -35108,7 +45891,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -35117,6 +45900,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -35126,7 +45912,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0385 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -35140,6 +45926,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -35174,6 +45968,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -35183,7 +45982,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -35199,7 +46010,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -35208,6 +46019,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -35217,7 +46031,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0386 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -35231,6 +46045,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -35265,6 +46087,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -35274,7 +46101,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -35290,7 +46129,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -35299,6 +46138,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -35308,7 +46150,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0387 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -35322,6 +46164,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -35356,6 +46206,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -35365,7 +46220,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -35381,7 +46248,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -35390,6 +46257,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -35399,7 +46269,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0388 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -35413,6 +46283,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -35447,95 +46325,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser - - not-known - - - not-allowed - - - required - - - - - TPO-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 + epo-procurement-document @@ -35547,7 +46339,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -35563,7 +46367,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -35572,6 +46376,128 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0389 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0390 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + fa-mix @@ -35581,7 +46507,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0390 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -35595,6 +46521,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -35629,6 +46563,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -35638,7 +46577,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -35654,7 +46605,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -35663,6 +46614,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -35672,7 +46626,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0391 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -35686,6 +46640,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -35720,6 +46682,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -35729,7 +46696,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -35745,7 +46724,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -35754,6 +46733,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -35763,7 +46745,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0392 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -35777,6 +46759,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -35811,6 +46801,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -35820,7 +46815,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -35836,7 +46843,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -35845,6 +46852,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -35854,7 +46864,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0393 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -35868,6 +46878,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -35902,6 +46920,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -35911,7 +46934,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -35927,7 +46962,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -35936,6 +46971,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -35945,7 +46983,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0394 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -35959,6 +46997,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -35993,6 +47039,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -36002,7 +47053,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -36018,7 +47081,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -36027,6 +47090,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -36036,7 +47102,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0395 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -36050,6 +47116,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -36084,6 +47158,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -36093,7 +47172,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -36109,7 +47200,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -36118,6 +47209,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -36127,7 +47221,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0396 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -36141,6 +47235,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -36175,6 +47277,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -36184,7 +47291,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -36200,7 +47319,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -36209,6 +47328,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -36218,7 +47340,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0397 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -36232,6 +47354,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -36266,6 +47396,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -36275,7 +47410,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -36291,7 +47438,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -36300,6 +47447,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -36309,7 +47459,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0398 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -36323,6 +47473,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -36357,6 +47515,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -36366,7 +47529,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -36382,7 +47557,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -36391,6 +47566,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -36400,7 +47578,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0399 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -36414,6 +47592,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -36448,6 +47634,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -36457,7 +47648,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -36473,7 +47676,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -36482,6 +47685,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -36491,7 +47697,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0400 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -36505,6 +47711,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -36539,6 +47753,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -36548,7 +47767,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -36564,7 +47795,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -36573,6 +47804,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -36582,7 +47816,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0401 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -36596,6 +47830,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -36630,6 +47872,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -36639,7 +47886,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -36655,7 +47914,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -36664,6 +47923,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -36673,7 +47935,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0402 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -36687,6 +47949,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -36721,6 +47991,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -36730,7 +48005,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -36746,7 +48033,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -36755,6 +48042,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -36764,7 +48054,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0403 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -36778,6 +48068,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -36812,6 +48110,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -36821,7 +48124,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -36837,7 +48152,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -36846,6 +48161,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -36855,7 +48173,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0404 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -36869,6 +48187,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -36903,6 +48229,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -36912,7 +48243,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -36928,7 +48271,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -36937,6 +48280,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -36946,7 +48292,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0405 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -36960,6 +48306,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -36994,6 +48348,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -37003,7 +48362,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -37019,7 +48390,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -37028,6 +48399,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -37037,7 +48411,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0406 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -37051,6 +48425,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -37085,6 +48467,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -37094,7 +48481,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -37110,7 +48509,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -37119,6 +48518,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -37128,7 +48530,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0407 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -37142,6 +48544,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -37176,6 +48586,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -37185,7 +48600,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -37201,7 +48628,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -37210,6 +48637,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -37219,7 +48649,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0408 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -37233,6 +48663,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -37267,6 +48705,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -37276,7 +48719,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -37292,7 +48747,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -37301,6 +48756,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -37310,7 +48768,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0409 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -37324,6 +48782,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -37358,6 +48824,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -37367,7 +48838,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -37383,7 +48866,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -37392,6 +48875,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -37401,7 +48887,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0410 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -37415,6 +48901,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -37449,6 +48943,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -37458,7 +48957,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -37474,7 +48985,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -37483,6 +48994,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -37492,7 +49006,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0411 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -37506,6 +49020,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -37540,6 +49062,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -37549,7 +49076,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -37565,7 +49104,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -37574,6 +49113,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -37583,7 +49125,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0412 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -37597,6 +49139,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -37631,6 +49181,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -37640,7 +49195,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -37656,7 +49223,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -37665,6 +49232,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -37674,7 +49244,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0413 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -37688,6 +49258,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -37722,6 +49300,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -37731,7 +49314,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -37747,7 +49342,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -37756,6 +49351,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -37765,7 +49363,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0414 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -37779,6 +49377,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -37813,6 +49419,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -37822,7 +49433,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -37838,7 +49461,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -37847,6 +49470,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -37856,7 +49482,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0415 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -37870,6 +49496,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -37904,6 +49538,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -37913,7 +49552,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -37929,7 +49580,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -37938,6 +49589,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -37947,7 +49601,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0416 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -37961,6 +49615,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -37995,6 +49657,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -38004,7 +49671,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -38020,7 +49699,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -38029,6 +49708,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -38038,7 +49720,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0417 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -38052,6 +49734,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -38086,6 +49776,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -38095,7 +49790,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -38111,7 +49818,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -38120,6 +49827,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -38129,7 +49839,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0418 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -38143,6 +49853,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -38177,6 +49895,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -38186,7 +49909,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -38202,7 +49937,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -38211,6 +49946,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -38220,7 +49958,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0419 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -38234,6 +49972,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -38268,6 +50014,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -38277,7 +50028,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -38293,7 +50056,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -38302,6 +50065,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -38311,7 +50077,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0420 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -38325,6 +50091,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -38359,6 +50133,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -38368,7 +50147,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -38384,7 +50175,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -38393,6 +50184,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -38402,7 +50196,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0421 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -38416,6 +50210,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -38450,6 +50252,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -38459,7 +50266,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -38475,7 +50294,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -38484,6 +50303,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -38493,7 +50315,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0422 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -38507,6 +50329,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -38541,6 +50371,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -38550,7 +50385,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -38566,7 +50413,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -38575,6 +50422,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -38584,7 +50434,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0423 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -38598,6 +50448,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -38632,6 +50490,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -38641,7 +50504,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -38657,7 +50532,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -38666,6 +50541,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -38675,7 +50553,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0424 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -38689,6 +50567,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -38723,6 +50609,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -38732,7 +50623,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -38748,7 +50651,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -38757,6 +50660,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -38766,7 +50672,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0425 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -38780,6 +50686,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -38814,6 +50728,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -38823,7 +50742,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -38839,7 +50770,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -38848,6 +50779,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -38857,7 +50791,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0426 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -38871,6 +50805,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -38905,6 +50847,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -38914,7 +50861,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -38930,7 +50889,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -38939,6 +50898,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -38948,7 +50910,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0427 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -38962,6 +50924,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -38996,6 +50966,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -39005,7 +50980,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -39021,7 +51008,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -39030,6 +51017,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -39039,7 +51029,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0428 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -39053,6 +51043,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -39087,6 +51085,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -39096,7 +51099,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -39112,7 +51127,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -39121,6 +51136,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -39130,7 +51148,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0429 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -39144,6 +51162,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -39178,6 +51204,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -39187,7 +51218,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -39203,7 +51246,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -39212,6 +51255,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -39221,7 +51267,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0430 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -39235,6 +51281,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -39269,6 +51323,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -39278,7 +51337,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -39294,7 +51365,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -39303,6 +51374,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -39312,7 +51386,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0431 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -39326,6 +51400,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -39360,6 +51442,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -39369,7 +51456,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -39385,7 +51484,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -39394,6 +51493,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -39403,7 +51505,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0432 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -39417,6 +51519,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -39451,6 +51561,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -39460,7 +51575,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -39476,7 +51603,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -39485,6 +51612,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -39494,7 +51624,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0433 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -39508,6 +51638,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -39542,6 +51680,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -39551,7 +51694,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -39567,7 +51722,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -39576,6 +51731,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -39585,7 +51743,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0434 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -39599,6 +51757,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -39633,6 +51799,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -39642,7 +51813,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -39658,7 +51841,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -39667,6 +51850,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -39676,7 +51862,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0435 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -39690,6 +51876,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -39724,6 +51918,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -39733,7 +51932,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -39749,7 +51960,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -39758,6 +51969,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -39767,7 +51981,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0436 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -39781,6 +51995,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -39815,6 +52037,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -39824,7 +52051,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -39840,7 +52079,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -39849,6 +52088,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -39858,7 +52100,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0437 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -39872,6 +52114,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -39906,6 +52156,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -39915,7 +52170,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -39931,7 +52198,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -39940,6 +52207,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -39949,7 +52219,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0438 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -39963,6 +52233,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -39997,6 +52275,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -40006,7 +52289,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -40022,7 +52317,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -40031,6 +52326,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -40040,7 +52338,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0439 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -40054,6 +52352,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -40088,6 +52394,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -40097,7 +52408,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -40113,7 +52436,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -40122,6 +52445,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -40131,7 +52457,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0440 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -40145,6 +52471,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -40179,6 +52513,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -40188,7 +52527,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -40204,7 +52555,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -40213,6 +52564,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -40222,7 +52576,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0441 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -40236,6 +52590,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -40270,6 +52632,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -40279,7 +52646,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -40295,7 +52674,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -40304,6 +52683,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -40313,7 +52695,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0442 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -40327,6 +52709,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -40361,6 +52751,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -40370,7 +52765,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -40386,7 +52793,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -40395,6 +52802,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -40404,7 +52814,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0443 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -40418,6 +52828,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -40452,6 +52870,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -40461,7 +52884,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -40477,7 +52912,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -40486,6 +52921,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -40495,7 +52933,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0444 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -40509,6 +52947,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -40543,6 +52989,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -40552,7 +53003,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -40568,7 +53031,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -40577,6 +53040,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -40586,7 +53052,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0445 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -40600,6 +53066,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -40634,6 +53108,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -40643,7 +53122,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -40659,7 +53150,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -40668,6 +53159,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -40677,7 +53171,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0446 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -40691,6 +53185,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -40725,6 +53227,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -40734,7 +53241,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -40750,7 +53269,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -40759,6 +53278,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -40768,7 +53290,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0447 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -40782,6 +53304,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -40816,6 +53346,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -40825,7 +53360,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -40841,7 +53388,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -40850,6 +53397,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -40859,7 +53409,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0448 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -40873,6 +53423,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -40907,6 +53465,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -40916,7 +53479,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -40932,7 +53507,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -40941,6 +53516,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -40950,7 +53528,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0449 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -40964,6 +53542,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -40998,6 +53584,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -41007,7 +53598,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -41023,7 +53626,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -41032,6 +53635,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -41041,7 +53647,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0450 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -41055,6 +53661,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -41089,6 +53703,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -41098,7 +53717,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -41114,7 +53745,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -41123,6 +53754,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -41132,7 +53766,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0451 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -41146,6 +53780,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -41180,6 +53822,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -41189,7 +53836,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -41205,7 +53864,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -41214,6 +53873,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -41223,7 +53885,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0452 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -41237,6 +53899,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -41271,6 +53941,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -41280,7 +53955,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -41296,7 +53983,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -41305,6 +53992,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -41314,7 +54004,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0453 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -41328,6 +54018,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -41362,6 +54060,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -41371,7 +54074,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -41387,7 +54102,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -41396,6 +54111,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -41405,7 +54123,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0454 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -41419,6 +54137,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -41453,6 +54179,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -41462,7 +54193,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -41478,7 +54221,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -41487,6 +54230,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -41496,7 +54242,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0455 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -41510,6 +54256,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -41544,6 +54298,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -41553,7 +54312,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -41569,7 +54340,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -41578,6 +54349,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -41587,7 +54361,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0456 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -41601,6 +54375,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -41635,6 +54417,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -41644,7 +54431,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -41660,7 +54459,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -41669,6 +54468,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -41678,7 +54480,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0457 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -41692,6 +54494,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -41726,6 +54536,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -41735,7 +54550,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -41751,7 +54578,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -41760,6 +54587,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -41769,7 +54599,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0458 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -41783,6 +54613,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -41817,6 +54655,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -41826,7 +54669,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -41842,7 +54697,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -41851,6 +54706,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -41860,7 +54718,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0459 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -41874,6 +54732,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -41908,6 +54774,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -41917,7 +54788,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -41933,7 +54816,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -41942,6 +54825,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -41951,7 +54837,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0460 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -41965,6 +54851,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -41999,6 +54893,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -42008,7 +54907,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -42024,7 +54935,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -42033,6 +54944,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -42042,7 +54956,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0461 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -42056,6 +54970,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -42090,6 +55012,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -42099,7 +55026,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -42115,7 +55054,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -42124,6 +55063,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -42133,7 +55075,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0462 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -42147,6 +55089,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -42181,6 +55131,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -42190,7 +55145,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -42206,7 +55173,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -42215,6 +55182,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -42224,7 +55194,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0463 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -42238,6 +55208,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -42272,6 +55250,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -42281,7 +55264,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -42297,7 +55292,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -42306,6 +55301,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -42315,7 +55313,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0464 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -42329,6 +55327,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -42363,6 +55369,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -42372,7 +55383,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -42388,7 +55411,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -42397,6 +55420,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -42406,7 +55432,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0465 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -42420,6 +55446,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -42454,6 +55488,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -42463,7 +55502,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -42479,7 +55530,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -42488,6 +55539,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -42497,7 +55551,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0466 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -42511,6 +55565,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -42545,6 +55607,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -42554,7 +55621,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -42570,7 +55649,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -42579,6 +55658,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -42588,7 +55670,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0467 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -42602,6 +55684,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -42636,6 +55726,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -42645,7 +55740,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -42661,7 +55768,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -42670,6 +55777,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -42679,7 +55789,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0468 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -42693,6 +55803,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -42727,6 +55845,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -42736,7 +55859,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -42752,7 +55887,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -42761,6 +55896,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -42770,7 +55908,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0469 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -42784,6 +55922,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -42818,6 +55964,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -42827,7 +55978,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -42843,7 +56006,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -42852,6 +56015,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -42861,7 +56027,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0470 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -42875,6 +56041,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -42909,6 +56083,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -42918,7 +56097,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -42934,7 +56125,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -42943,6 +56134,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -42952,7 +56146,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0471 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -42966,6 +56160,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -43000,6 +56202,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -43009,7 +56216,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -43025,7 +56244,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -43034,6 +56253,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -43043,7 +56265,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0472 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -43057,6 +56279,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -43091,6 +56321,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -43100,7 +56335,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -43116,7 +56363,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -43125,6 +56372,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -43134,7 +56384,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0473 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -43148,6 +56398,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -43182,6 +56440,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -43191,7 +56454,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -43207,7 +56482,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -43216,6 +56491,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -43225,7 +56503,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0474 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -43239,6 +56517,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -43273,95 +56559,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser - - not-known - - - not-allowed - - - required - - - - - TPO-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 + epo-procurement-document @@ -43373,7 +56573,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -43389,7 +56601,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -43398,6 +56610,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -43406,8 +56621,8 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - ABE LOT-0476 - Poor Things SDK 1.10 + ABE LOT-0475 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -43421,13 +56636,21 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 - LOT-0477 + LOT-0476 @@ -43455,95 +56678,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser - - not-known - - - not-allowed - - - required - - - - - TPO-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 + epo-procurement-document @@ -43555,7 +56692,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -43571,7 +56720,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -43580,6 +56729,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -43588,8 +56740,8 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - ABE LOT-0478 - Poor Things SDK 1.10 + ABE LOT-0476 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -43603,13 +56755,21 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 - LOT-0479 + LOT-0477 @@ -43637,6 +56797,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -43646,7 +56811,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -43662,7 +56839,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -43671,6 +56848,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -43679,8 +56859,8 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - ABE LOT-0479 - Poor Things SDK 1.10 + ABE LOT-0477 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -43694,13 +56874,21 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 - LOT-0480 + LOT-0478 @@ -43728,6 +56916,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -43737,7 +56930,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -43753,7 +56958,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -43762,6 +56967,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -43770,8 +56978,8 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - ABE LOT-0480 - Poor Things SDK 1.10 + ABE LOT-0478 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -43785,13 +56993,21 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 - LOT-0481 + LOT-0479 @@ -43819,6 +57035,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -43828,7 +57049,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -43844,7 +57077,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -43853,6 +57086,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -43861,8 +57097,8 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - ABE LOT-0481 - Poor Things SDK 1.10 + ABE LOT-0479 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -43876,13 +57112,21 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 - LOT-0482 + LOT-0480 @@ -43910,6 +57154,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -43919,7 +57168,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -43935,7 +57196,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -43944,6 +57205,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -43952,8 +57216,8 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - ABE LOT-0482 - Poor Things SDK 1.10 + ABE LOT-0480 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -43967,13 +57231,21 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 - LOT-0483 + LOT-0481 @@ -44001,6 +57273,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -44010,7 +57287,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -44026,7 +57315,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -44035,6 +57324,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -44043,8 +57335,8 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - ABE LOT-0483 - Poor Things SDK 1.10 + ABE LOT-0481 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -44058,13 +57350,21 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 - LOT-0484 + LOT-0482 @@ -44092,6 +57392,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -44101,7 +57406,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -44117,7 +57434,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -44126,6 +57443,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -44134,8 +57454,8 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - ABE LOT-0484 - Poor Things SDK 1.10 + ABE LOT-0482 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -44149,13 +57469,21 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 - LOT-0485 + LOT-0483 @@ -44183,6 +57511,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -44192,7 +57525,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -44208,7 +57553,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -44217,6 +57562,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -44225,8 +57573,8 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - ABE LOT-0485 - Poor Things SDK 1.10 + ABE LOT-0483 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -44240,13 +57588,21 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 - LOT-0486 + LOT-0484 @@ -44274,6 +57630,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -44283,7 +57644,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -44299,7 +57672,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -44308,6 +57681,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -44316,8 +57692,8 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - ABE LOT-0486 - Poor Things SDK 1.10 + ABE LOT-0484 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -44331,13 +57707,21 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 - LOT-0487 + LOT-0485 @@ -44365,6 +57749,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -44374,7 +57763,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -44390,7 +57791,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -44399,6 +57800,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -44407,8 +57811,8 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - ABE LOT-0487 - Poor Things SDK 1.10 + ABE LOT-0485 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -44422,13 +57826,21 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 - LOT-0488 + LOT-0486 @@ -44456,6 +57868,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -44465,7 +57882,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -44481,7 +57910,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -44490,6 +57919,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -44498,8 +57930,8 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - ABE LOT-0488 - Poor Things SDK 1.10 + ABE LOT-0486 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -44513,13 +57945,21 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 - LOT-0489 + LOT-0487 @@ -44547,6 +57987,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -44556,7 +58001,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -44572,7 +58029,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -44581,6 +58038,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -44589,8 +58049,8 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - ABE LOT-0489 - Poor Things SDK 1.10 + ABE LOT-0487 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -44604,13 +58064,21 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 - LOT-0490 + LOT-0488 @@ -44638,6 +58106,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -44647,7 +58120,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -44663,7 +58148,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -44672,6 +58157,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -44680,8 +58168,8 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - ABE LOT-0490 - Poor Things SDK 1.10 + ABE LOT-0488 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -44695,13 +58183,21 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 - LOT-0491 + LOT-0489 @@ -44729,6 +58225,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -44738,7 +58239,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -44754,7 +58267,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -44763,6 +58276,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -44771,8 +58287,8 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - ABE LOT-0491 - Poor Things SDK 1.10 + ABE LOT-0489 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -44786,13 +58302,21 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 - LOT-0492 + LOT-0490 @@ -44820,6 +58344,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -44829,7 +58358,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -44845,7 +58386,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -44854,6 +58395,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -44862,8 +58406,8 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - ABE LOT-0492 - Poor Things SDK 1.10 + ABE LOT-0490 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -44877,13 +58421,21 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 - LOT-0493 + LOT-0491 @@ -44911,6 +58463,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -44920,7 +58477,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -44936,7 +58505,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -44945,6 +58514,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -44953,8 +58525,8 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - ABE LOT-0493 - Poor Things SDK 1.10 + ABE LOT-0491 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -44968,13 +58540,21 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 - LOT-0494 + LOT-0492 @@ -45002,6 +58582,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -45011,7 +58596,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -45027,7 +58624,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -45036,6 +58633,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -45044,8 +58644,8 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - ABE LOT-0494 - Poor Things SDK 1.10 + ABE LOT-0492 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -45059,13 +58659,21 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 - LOT-0495 + LOT-0493 @@ -45093,6 +58701,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -45102,7 +58715,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -45118,7 +58743,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -45127,6 +58752,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -45135,8 +58763,8 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - ABE LOT-0495 - Poor Things SDK 1.10 + ABE LOT-0493 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -45150,13 +58778,21 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 - LOT-0496 + LOT-0494 @@ -45184,6 +58820,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -45193,7 +58834,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -45209,7 +58862,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -45218,6 +58871,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -45226,8 +58882,8 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - ABE LOT-0496 - Poor Things SDK 1.10 + ABE LOT-0494 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -45241,13 +58897,21 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 - LOT-0497 + LOT-0495 @@ -45275,6 +58939,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -45284,7 +58953,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -45300,7 +58981,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -45309,6 +58990,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -45317,8 +59001,8 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - ABE LOT-0497 - Poor Things SDK 1.10 + ABE LOT-0495 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -45332,13 +59016,21 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 - LOT-0498 + LOT-0496 @@ -45366,6 +59058,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -45375,7 +59072,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -45391,7 +59100,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -45400,6 +59109,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -45408,8 +59120,8 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - ABE LOT-0498 - Poor Things SDK 1.10 + ABE LOT-0496 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -45423,13 +59135,21 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 - LOT-0499 + LOT-0497 @@ -45457,6 +59177,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -45466,7 +59191,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -45482,7 +59219,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -45491,6 +59228,247 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0497 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0498 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0498 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0499 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + fa-mix @@ -45500,7 +59478,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0499 - Poor Things SDK 1.10 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -45514,6 +59492,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 @@ -45548,6 +59534,11 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo res-pub-ser + + + epo-procurement-document + + not-known @@ -45557,7 +59548,19 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo required + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + Within 2 months of the notification to the plaintiff + TPO-0001 @@ -45573,7 +59576,7 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo - not-allowed + allowed true 2023-12-30+02:00 @@ -45582,6 +59585,9 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo true + + 3 + fa-mix @@ -45591,7 +59597,59507 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo ABE LOT-0500 - Poor Things SDK 1.10 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0501 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0501 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0502 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0502 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0503 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0503 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0504 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0504 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0505 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0505 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0506 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0506 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0507 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0507 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0508 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0508 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0509 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0509 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0510 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0510 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0511 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0511 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0512 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0512 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0513 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0513 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0514 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0514 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0515 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0515 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0516 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0516 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0517 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0517 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0518 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0518 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0519 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0519 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0520 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0520 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0521 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0521 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0522 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0522 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0523 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0523 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0524 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0524 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0525 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0525 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0526 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0526 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0527 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0527 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0528 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0528 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0529 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0529 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0530 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0530 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0531 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0531 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0532 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0532 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0533 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0533 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0534 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0534 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0535 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0535 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0536 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0536 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0537 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0537 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0538 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0538 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0539 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0539 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0540 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0540 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0541 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0541 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0542 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0542 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0543 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0543 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0544 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0544 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0545 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0545 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0546 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0546 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0547 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0547 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0548 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0548 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0549 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0549 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0550 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0550 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0551 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0551 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0552 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0552 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0553 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0553 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0554 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0554 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0555 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0555 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0556 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0556 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0557 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0557 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0558 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0558 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0559 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0559 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0560 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0560 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0561 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0561 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0562 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0562 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0563 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0563 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0564 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0564 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0565 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0565 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0566 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0566 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0567 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0567 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0568 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0568 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0569 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0569 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0570 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0570 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0571 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0571 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0572 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0572 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0573 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0573 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0574 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0574 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0575 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0575 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0576 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0576 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0577 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0577 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0578 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0578 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0579 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0579 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0580 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0580 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0581 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0581 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0582 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0582 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0583 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0583 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0584 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0584 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0585 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0585 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0586 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0586 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0587 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0587 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0588 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0588 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0589 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0589 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0590 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0590 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0591 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0591 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0592 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0592 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0593 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0593 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0594 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0594 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0595 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0595 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0596 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0596 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0597 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0597 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0598 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0598 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0599 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0599 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0600 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0600 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0601 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0601 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0602 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0602 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0603 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0603 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0604 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0604 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0605 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0605 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0606 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0606 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0607 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0607 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0608 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0608 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0609 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0609 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0610 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0610 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0611 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0611 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0612 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0612 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0613 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0613 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0614 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0614 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0615 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0615 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0616 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0616 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0617 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0617 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0618 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0618 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0619 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0619 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0620 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0620 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0621 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0621 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0622 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0622 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0623 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0623 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0624 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0624 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0625 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0625 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0626 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0626 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0627 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0627 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0628 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0628 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0629 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0629 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0630 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0630 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0631 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0631 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0632 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0632 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0633 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0633 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0634 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0634 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0635 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0635 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0636 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0636 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0637 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0637 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0638 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0638 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0639 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0639 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0640 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0640 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0641 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0641 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0642 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0642 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0643 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0643 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0644 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0644 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0645 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0645 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0646 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0646 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0647 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0647 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0648 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0648 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0649 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0649 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0650 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0650 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0651 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0651 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0652 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0652 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0653 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0653 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0654 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0654 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0655 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0655 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0656 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0656 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0657 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0657 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0658 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0658 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0659 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0659 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0660 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0660 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0661 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0661 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0662 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0662 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0663 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0663 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0664 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0664 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0665 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0665 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0666 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0666 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0667 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0667 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0668 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0668 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0669 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0669 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0670 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0670 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0671 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0671 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0672 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0672 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0673 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0673 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0674 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0674 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0675 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0675 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0676 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0676 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0677 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0677 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0678 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0678 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0679 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0679 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0680 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0680 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0681 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0681 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0682 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0682 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0683 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0683 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0684 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0684 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0685 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0685 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0686 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0686 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0687 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0687 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0688 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0688 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0689 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0689 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0690 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0690 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0691 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0691 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0692 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0692 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0693 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0693 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0694 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0694 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0695 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0695 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0696 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0696 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0697 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0697 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0698 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0698 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0699 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0699 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0700 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0700 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0701 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0701 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0702 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0702 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0703 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0703 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0704 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0704 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0705 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0705 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0706 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0706 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0707 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0707 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0708 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0708 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0709 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0709 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0710 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0710 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0711 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0711 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0712 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0712 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0713 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0713 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0714 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0714 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0715 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0715 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0716 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0716 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0717 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0717 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0718 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0718 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0719 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0719 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0720 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0720 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0721 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0721 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0722 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0722 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0723 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0723 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0724 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0724 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0725 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0725 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0726 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0726 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0727 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0727 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0728 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0728 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0729 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0729 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0730 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0730 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0731 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0731 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0732 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0732 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0733 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0733 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0734 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0734 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0735 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0735 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0736 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0736 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0737 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0737 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0738 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0738 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0739 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0739 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0740 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0740 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0741 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0741 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0742 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0742 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0743 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0743 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0744 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0744 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0745 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0745 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0746 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0746 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0747 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0747 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0748 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0748 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0749 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0749 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0750 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0750 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0751 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0751 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0752 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0752 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0753 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0753 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0754 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0754 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0755 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0755 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0756 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0756 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0757 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0757 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0758 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0758 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0759 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0759 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0760 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0760 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0761 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0761 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0762 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0762 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0763 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0763 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0764 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0764 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0765 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0765 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0766 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0766 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0767 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0767 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0768 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0768 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0769 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0769 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0770 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0770 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0771 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0771 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0772 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0772 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0773 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0773 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0774 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0774 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0775 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0775 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0776 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0776 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0777 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0777 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0778 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0778 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0779 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0779 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0780 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0780 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0781 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0781 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0782 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0782 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0783 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0783 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0784 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0784 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0785 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0785 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0786 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0786 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0787 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0787 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0788 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0788 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0789 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0789 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0790 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0790 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0791 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0791 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0792 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0792 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0793 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0793 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0794 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0794 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0795 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0795 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0796 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0796 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0797 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0797 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0798 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0798 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0799 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0799 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0800 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0800 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0801 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0801 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0802 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0802 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0803 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0803 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0804 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0804 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0805 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0805 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0806 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0806 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0807 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0807 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0808 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0808 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0809 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0809 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0810 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0810 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0811 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0811 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0812 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0812 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0813 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0813 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0814 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0814 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0815 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0815 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0816 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0816 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0817 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0817 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0818 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0818 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0819 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0819 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0820 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0820 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0821 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0821 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0822 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0822 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0823 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0823 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0824 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0824 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0825 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0825 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0826 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0826 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0827 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0827 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0828 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0828 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0829 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0829 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0830 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0830 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0831 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0831 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0832 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0832 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0833 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0833 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0834 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0834 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0835 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0835 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0836 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0836 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0837 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0837 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0838 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0838 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0839 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0839 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0840 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0840 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0841 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0841 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0842 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0842 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0843 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0843 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0844 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0844 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0845 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0845 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0846 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0846 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0847 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0847 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0848 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0848 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0849 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0849 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0850 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0850 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0851 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0851 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0852 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0852 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0853 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0853 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0854 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0854 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0855 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0855 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0856 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0856 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0857 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0857 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0858 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0858 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0859 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0859 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0860 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0860 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0861 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0861 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0862 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0862 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0863 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0863 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0864 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0864 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0865 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0865 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0866 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0866 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0867 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0867 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0868 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0868 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0869 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0869 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0870 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0870 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0871 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0871 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0872 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0872 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0873 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0873 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0874 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0874 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0875 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0875 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0876 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0876 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0877 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0877 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0878 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0878 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0879 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0879 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0880 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0880 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0881 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0881 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0882 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0882 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0883 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0883 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0884 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0884 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0885 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0885 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0886 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0886 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0887 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0887 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0888 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0888 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0889 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0889 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0890 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0890 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0891 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0891 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0892 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0892 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0893 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0893 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0894 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0894 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0895 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0895 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0896 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0896 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0897 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0897 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0898 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0898 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0899 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0899 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0900 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0900 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0901 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0901 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0902 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0902 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0903 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0903 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0904 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0904 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0905 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0905 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0906 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0906 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0907 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0907 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0908 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0908 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0909 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0909 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0910 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0910 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0911 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0911 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0912 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0912 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0913 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0913 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0914 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0914 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0915 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0915 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0916 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0916 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0917 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0917 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0918 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0918 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0919 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0919 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0920 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0920 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0921 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0921 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0922 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0922 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0923 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0923 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0924 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0924 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0925 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0925 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0926 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0926 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0927 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0927 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0928 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0928 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0929 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0929 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0930 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0930 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0931 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0931 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0932 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0932 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0933 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0933 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0934 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0934 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0935 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0935 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0936 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0936 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0937 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0937 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0938 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0938 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0939 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0939 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0940 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0940 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0941 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0941 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0942 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0942 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0943 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0943 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0944 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0944 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0945 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0945 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0946 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0946 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0947 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0947 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0948 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0948 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0949 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0949 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0950 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0950 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0951 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0951 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0952 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0952 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0953 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0953 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0954 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0954 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0955 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0955 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0956 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0956 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0957 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0957 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0958 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0958 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0959 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0959 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0960 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0960 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0961 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0961 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0962 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0962 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0963 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0963 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0964 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0964 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0965 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0965 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0966 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0966 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0967 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0967 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0968 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0968 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0969 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0969 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0970 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0970 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0971 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0971 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0972 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0972 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0973 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0973 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0974 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0974 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0975 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0975 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0976 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0976 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0977 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0977 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0978 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0978 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0979 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0979 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0980 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0980 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0981 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0981 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0982 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0982 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0983 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0983 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0984 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0984 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0985 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0985 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0986 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0986 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0987 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0987 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0988 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0988 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0989 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0989 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0990 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0990 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0991 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0991 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0992 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0992 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0993 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0993 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0994 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0994 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0995 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0995 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0996 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0996 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0997 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0997 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0998 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0998 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-0999 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-0999 + Poor Things + + Premise + A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] + Development + Lanthimos read Poor Things years prior to developing the film and met with the author, Alasdair Gray, in Scotland to acquire the rights. "He was a very lovely man," Lanthimos shared, "Unfortunately, he died just a couple of years before we actually made the film, but he was very special and energetic; he was 80-something [when we met], and as soon as I got there, he had seen Dogtooth and said, 'I had my friend put on the DVD, because I don’t know how to operate these things, but I think you're very talented, young man.'" Lanthimos shared that Gray took him on a personal tour of Glasgow, where Gray showed Lanthimos several places that he had incorporated into the story.[citation needed] + While filming The Favourite (2018), Lanthimos revisited the project, which he discussed with Emma Stone, who also starred in the film. Lanthimos began developing Poor Things more actively following the success of The Favourite: “After the relative success of The Favourite, where I actually made a slightly more expensive film that was successful, people were more inclined to allow me to do whatever it is that I wanted, so I just went back to Gray’s book and said, ‘This is what I want to do.’ It was a long process, but the book was always on my mind.” While developing the film, Lanthimos and Stone collaborated with each other on the short film Bleat (2022).[8] + Pre-production + Poor Things was officially announced in February 2021.[9] Lanthimos felt that working with Stone again gave him an advantage to the production, as they developed a mutual trust towards one another. Stone also discussed how the process of making Poor Things was different in comparison to The Favourite, due to also acting as a producer: “It was so interesting to be involved in how the film was being pieced together, from cast to department heads to what have you. Ultimately, Yorgos was the one making those decisions, but I was very involved in the process, which started during the pandemic; we were reaching out to people and casting and everything during that time, because we couldn’t go anywhere.”[10] + + services + + 75121000 + + + + LU000 + + LUX + + + + + 10 + + + + + LOT-1000 + + + + + + + tp-abil + + + + + + eu-funds + + _DEFAULT_VALUE_CHANGE_ME_ + restricted-document + + + https://enotices2.acceptance.ted.europa.eu/home + + + + + + res-pub-ser + + + + + epo-procurement-document + + + + not-known + + + not-allowed + + + required + + + https://endpoint.example.com + + ORG-0001 + + + + 6 + + + + Within 2 months of the notification to the plaintiff + + + + TPO-0001 + + + + + ELL + + + false + true + + + + allowed + true + + 2023-12-30+02:00 + 15:16:17+02:00 + + + true + + + 3 + + + fa-mix + + + dps-nlist + + + + ABE LOT-1000 + Poor Things Premise A young woman, Bella, is brought back to life by her guardian, the scientist Dr. Godwin Baxter. Initially naïve, Bella is eager to learn about the world around her, albeit under Baxter's protection. Wanting to see more, she runs off with Duncan Wedderburn, a slick and debauched lawyer, and travels across continents. Free from the prejudices of her times, Bella demands equality and liberation.[7] @@ -45605,6 +119111,14 @@ Poor Things was officially announced in February 2021.[9] Lanthimos felt that wo 75121000 + + + LU000 + + LUX + + + 10 diff --git a/src/main/resources/benchmark/notices/29.xml b/src/main/resources/benchmark/notices/29.xml index ec8dddf..5df9794 100644 --- a/src/main/resources/benchmark/notices/29.xml +++ b/src/main/resources/benchmark/notices/29.xml @@ -13,7 +13,7 @@ RES-0001 clos-nw - no-rece + no-rece tenders @@ -66,7 +66,6 @@ RES-0002 selec-w - false TEN-0001 @@ -128,7 +127,6 @@ RES-0003 selec-w - false TEN-0002 @@ -190,7 +188,6 @@ RES-0004 selec-w - false TEN-0003 @@ -252,7 +249,6 @@ RES-0005 selec-w - false TEN-0004 @@ -314,7 +310,6 @@ RES-0006 selec-w - false TEN-0005 @@ -376,7 +371,6 @@ RES-0007 selec-w - false TEN-0006 @@ -438,7 +432,6 @@ RES-0008 selec-w - false TEN-0007 @@ -500,7 +493,6 @@ RES-0009 selec-w - false TEN-0008 @@ -562,7 +554,6 @@ RES-0010 selec-w - false TEN-0009 @@ -624,7 +615,6 @@ RES-0011 selec-w - false TEN-0010 @@ -686,7 +676,6 @@ RES-0012 selec-w - false TEN-0011 @@ -748,7 +737,6 @@ RES-0013 selec-w - false TEN-0012 @@ -810,7 +798,6 @@ RES-0014 selec-w - false TEN-0013 @@ -872,7 +859,6 @@ RES-0015 selec-w - false TEN-0014 @@ -934,7 +920,6 @@ RES-0016 selec-w - false TEN-0015 @@ -996,7 +981,6 @@ RES-0017 selec-w - false TEN-0016 @@ -1058,7 +1042,6 @@ RES-0018 selec-w - false TEN-0017 @@ -1120,7 +1103,6 @@ RES-0019 selec-w - false TEN-0018 @@ -1182,7 +1164,6 @@ RES-0020 selec-w - false TEN-0019 @@ -1244,7 +1225,6 @@ RES-0021 selec-w - false TEN-0020 @@ -1306,7 +1286,6 @@ RES-0022 selec-w - false TEN-0021 @@ -1368,7 +1347,6 @@ RES-0023 selec-w - false TEN-0022 @@ -1430,7 +1408,6 @@ RES-0024 selec-w - false TEN-0023 @@ -1492,7 +1469,6 @@ RES-0025 selec-w - false TEN-0024 @@ -1554,7 +1530,6 @@ RES-0026 selec-w - false TEN-0025 @@ -1616,7 +1591,6 @@ RES-0027 selec-w - false TEN-0026 @@ -1678,7 +1652,6 @@ RES-0028 selec-w - false TEN-0027 @@ -1740,7 +1713,6 @@ RES-0029 selec-w - false TEN-0028 @@ -1802,7 +1774,6 @@ RES-0030 selec-w - false TEN-0029 @@ -1864,7 +1835,6 @@ RES-0031 selec-w - false TEN-0030 @@ -1926,7 +1896,6 @@ RES-0032 selec-w - false TEN-0031 @@ -1989,7 +1958,7 @@ RES-0033 clos-nw - all-rej + all-rej tenders @@ -2042,7 +2011,6 @@ RES-0034 selec-w - false TEN-0032 @@ -2104,7 +2072,6 @@ RES-0035 selec-w - false TEN-0033 @@ -2166,7 +2133,6 @@ RES-0036 selec-w - false TEN-0034 @@ -2228,7 +2194,6 @@ RES-0037 selec-w - false TEN-0035 @@ -2290,7 +2255,6 @@ RES-0038 selec-w - false TEN-0036 @@ -2352,7 +2316,6 @@ RES-0039 selec-w - false TEN-0037 @@ -2414,7 +2377,6 @@ RES-0040 selec-w - false TEN-0038 @@ -2476,7 +2438,6 @@ RES-0041 selec-w - false TEN-0039 @@ -2538,7 +2499,6 @@ RES-0042 selec-w - false TEN-0040 @@ -2600,7 +2560,6 @@ RES-0043 selec-w - false TEN-0041 @@ -2662,7 +2621,6 @@ RES-0044 selec-w - false TEN-0042 @@ -2724,7 +2682,6 @@ RES-0045 selec-w - false TEN-0043 @@ -2786,7 +2743,6 @@ RES-0046 selec-w - false TEN-0044 @@ -2848,7 +2804,6 @@ RES-0047 selec-w - false TEN-0045 @@ -2910,7 +2865,6 @@ RES-0048 selec-w - false TEN-0046 @@ -2972,7 +2926,6 @@ RES-0049 selec-w - false TEN-0047 @@ -3034,7 +2987,6 @@ RES-0050 selec-w - false TEN-0048 @@ -3096,7 +3048,6 @@ RES-0051 selec-w - false TEN-0049 @@ -3158,7 +3109,6 @@ RES-0052 selec-w - false TEN-0050 @@ -3220,7 +3170,6 @@ RES-0053 selec-w - false TEN-0051 @@ -3282,7 +3231,6 @@ RES-0054 selec-w - false TEN-0052 @@ -3344,7 +3292,6 @@ RES-0055 selec-w - false TEN-0053 @@ -3406,7 +3353,6 @@ RES-0056 selec-w - false TEN-0054 @@ -3468,7 +3414,6 @@ RES-0057 selec-w - false TEN-0055 @@ -3530,7 +3475,6 @@ RES-0058 selec-w - false TEN-0056 @@ -3592,7 +3536,6 @@ RES-0059 selec-w - false TEN-0057 @@ -3654,7 +3597,6 @@ RES-0060 selec-w - false TEN-0058 @@ -3716,7 +3658,6 @@ RES-0061 selec-w - false TEN-0059 @@ -3778,7 +3719,6 @@ RES-0062 selec-w - false TEN-0060 @@ -3840,7 +3780,6 @@ RES-0063 selec-w - false TEN-0061 @@ -3902,7 +3841,6 @@ RES-0064 selec-w - false TEN-0062 @@ -3964,7 +3902,6 @@ RES-0065 selec-w - false TEN-0063 @@ -4026,7 +3963,6 @@ RES-0066 selec-w - false TEN-0064 @@ -4088,7 +4024,6 @@ RES-0067 selec-w - false TEN-0065 @@ -4150,7 +4085,6 @@ RES-0068 selec-w - false TEN-0066 @@ -4212,7 +4146,6 @@ RES-0069 selec-w - false TEN-0067 @@ -4274,7 +4207,6 @@ RES-0070 selec-w - false TEN-0068 @@ -4336,7 +4268,6 @@ RES-0071 selec-w - false TEN-0069 @@ -4398,7 +4329,6 @@ RES-0072 selec-w - false TEN-0070 @@ -4460,7 +4390,6 @@ RES-0073 selec-w - false TEN-0071 @@ -4522,7 +4451,6 @@ RES-0074 selec-w - false TEN-0072 @@ -4584,7 +4512,6 @@ RES-0075 selec-w - false TEN-0073 @@ -4646,7 +4573,6 @@ RES-0076 selec-w - false TEN-0074 @@ -4708,7 +4634,6 @@ RES-0077 selec-w - false TEN-0075 @@ -4770,7 +4695,6 @@ RES-0078 selec-w - false TEN-0076 @@ -4832,7 +4756,6 @@ RES-0079 selec-w - false TEN-0077 @@ -4894,7 +4817,6 @@ RES-0080 selec-w - false TEN-0078 @@ -4957,7 +4879,7 @@ RES-0081 clos-nw - no-rece + no-rece tenders @@ -5010,7 +4932,6 @@ RES-0082 selec-w - false TEN-0079 @@ -5072,7 +4993,6 @@ RES-0083 selec-w - false TEN-0080 @@ -5134,7 +5054,6 @@ RES-0084 selec-w - false TEN-0081 @@ -5196,7 +5115,6 @@ RES-0085 selec-w - false TEN-0082 @@ -5258,7 +5176,6 @@ RES-0086 selec-w - false TEN-0083 @@ -5320,7 +5237,6 @@ RES-0087 selec-w - false TEN-0084 @@ -5382,7 +5298,6 @@ RES-0088 selec-w - false TEN-0085 @@ -5444,7 +5359,6 @@ RES-0089 selec-w - false TEN-0086 @@ -5506,7 +5420,6 @@ RES-0090 selec-w - false TEN-0087 @@ -5568,7 +5481,6 @@ RES-0091 selec-w - false TEN-0088 @@ -5630,7 +5542,6 @@ RES-0092 selec-w - false TEN-0089 @@ -5692,7 +5603,6 @@ RES-0093 selec-w - false TEN-0090 @@ -5754,7 +5664,6 @@ RES-0094 selec-w - false TEN-0091 @@ -5816,7 +5725,6 @@ RES-0095 selec-w - false TEN-0092 @@ -5878,7 +5786,6 @@ RES-0096 selec-w - false TEN-0093 @@ -5940,7 +5847,6 @@ RES-0097 selec-w - false TEN-0094 @@ -6002,7 +5908,6 @@ RES-0098 selec-w - false TEN-0095 @@ -6064,7 +5969,6 @@ RES-0099 selec-w - false TEN-0096 @@ -6126,7 +6030,6 @@ RES-0100 selec-w - false TEN-0097 @@ -6188,7 +6091,6 @@ RES-0101 selec-w - false TEN-0098 @@ -6250,7 +6152,6 @@ RES-0102 selec-w - false TEN-0099 @@ -6312,7 +6213,6 @@ RES-0103 selec-w - false TEN-0100 @@ -6374,7 +6274,6 @@ RES-0104 selec-w - false TEN-0101 @@ -6436,7 +6335,6 @@ RES-0105 selec-w - false TEN-0102 @@ -6498,7 +6396,6 @@ RES-0106 selec-w - false TEN-0103 @@ -6560,7 +6457,6 @@ RES-0107 selec-w - false TEN-0104 @@ -6622,7 +6518,6 @@ RES-0108 selec-w - false TEN-0105 @@ -6684,7 +6579,6 @@ RES-0109 selec-w - false TEN-0106 @@ -6746,7 +6640,6 @@ RES-0110 selec-w - false TEN-0107 @@ -6809,7 +6702,7 @@ RES-0111 clos-nw - no-rece + no-rece tenders @@ -6862,7 +6755,6 @@ RES-0112 selec-w - false TEN-0108 @@ -6924,7 +6816,6 @@ RES-0113 selec-w - false TEN-0109 @@ -6986,7 +6877,6 @@ RES-0114 selec-w - false TEN-0110 @@ -7048,7 +6938,6 @@ RES-0115 selec-w - false TEN-0111 @@ -7110,7 +6999,6 @@ RES-0116 selec-w - false TEN-0112 @@ -7172,7 +7060,6 @@ RES-0117 selec-w - false TEN-0113 @@ -7234,7 +7121,6 @@ RES-0118 selec-w - false TEN-0114 @@ -7296,7 +7182,6 @@ RES-0119 selec-w - false TEN-0115 @@ -7358,7 +7243,6 @@ RES-0120 selec-w - false TEN-0116 @@ -7420,7 +7304,6 @@ RES-0121 selec-w - false TEN-0117 @@ -7482,7 +7365,6 @@ RES-0122 selec-w - false TEN-0118 @@ -7544,7 +7426,6 @@ RES-0123 selec-w - false TEN-0119 @@ -7606,7 +7487,6 @@ RES-0124 selec-w - false TEN-0120 @@ -7668,7 +7548,6 @@ RES-0125 selec-w - false TEN-0121 @@ -7730,7 +7609,6 @@ RES-0126 selec-w - false TEN-0122 @@ -7792,7 +7670,6 @@ RES-0127 selec-w - false TEN-0123 @@ -7854,7 +7731,6 @@ RES-0128 selec-w - false TEN-0124 @@ -7916,7 +7792,6 @@ RES-0129 selec-w - false TEN-0125 @@ -7978,7 +7853,6 @@ RES-0130 selec-w - false TEN-0126 @@ -8040,7 +7914,6 @@ RES-0131 selec-w - false TEN-0127 @@ -8102,7 +7975,6 @@ RES-0132 selec-w - false TEN-0128 @@ -8164,7 +8036,6 @@ RES-0133 selec-w - false TEN-0129 @@ -8227,7 +8098,7 @@ RES-0134 clos-nw - no-rece + no-rece tenders @@ -8280,7 +8151,6 @@ RES-0135 selec-w - false TEN-0130 @@ -8342,7 +8212,6 @@ RES-0136 selec-w - false TEN-0131 @@ -8404,7 +8273,6 @@ RES-0137 selec-w - false TEN-0132 @@ -8466,7 +8334,6 @@ RES-0138 selec-w - false TEN-0133 @@ -8528,7 +8395,6 @@ RES-0139 selec-w - false TEN-0134 @@ -8590,7 +8456,6 @@ RES-0140 selec-w - false TEN-0135 @@ -8652,7 +8517,6 @@ RES-0141 selec-w - false TEN-0136 @@ -8714,7 +8578,6 @@ RES-0142 selec-w - false TEN-0137 @@ -8776,7 +8639,6 @@ RES-0143 selec-w - false TEN-0138 @@ -8838,7 +8700,6 @@ RES-0144 selec-w - false TEN-0139 @@ -8900,7 +8761,6 @@ RES-0145 selec-w - false TEN-0140 @@ -8962,7 +8822,6 @@ RES-0146 selec-w - false TEN-0141 @@ -9024,7 +8883,6 @@ RES-0147 selec-w - false TEN-0142 @@ -9086,7 +8944,6 @@ RES-0148 selec-w - false TEN-0143 @@ -9149,7 +9006,7 @@ RES-0149 clos-nw - no-rece + no-rece tenders @@ -9202,7 +9059,6 @@ RES-0150 selec-w - false TEN-0144 @@ -9264,7 +9120,6 @@ RES-0151 selec-w - false TEN-0145 @@ -9326,7 +9181,6 @@ RES-0152 selec-w - false TEN-0146 @@ -9388,7 +9242,6 @@ RES-0153 selec-w - false TEN-0147 @@ -9450,7 +9303,6 @@ RES-0154 selec-w - false TEN-0148 @@ -9512,7 +9364,6 @@ RES-0155 selec-w - false TEN-0149 @@ -9574,7 +9425,6 @@ RES-0156 selec-w - false TEN-0150 @@ -9636,7 +9486,6 @@ RES-0157 selec-w - false TEN-0151 @@ -9699,7 +9548,7 @@ RES-0158 clos-nw - no-rece + no-rece tenders @@ -9752,7 +9601,6 @@ RES-0159 selec-w - false TEN-0152 @@ -9814,7 +9662,6 @@ RES-0160 selec-w - false TEN-0153 @@ -9876,7 +9723,6 @@ RES-0161 selec-w - false TEN-0154 @@ -9938,7 +9784,6 @@ RES-0162 selec-w - false TEN-0155 @@ -10000,7 +9845,6 @@ RES-0163 selec-w - false TEN-0156 @@ -10062,7 +9906,6 @@ RES-0164 selec-w - false TEN-0157 @@ -10124,7 +9967,6 @@ RES-0165 selec-w - false TEN-0158 @@ -10186,7 +10028,6 @@ RES-0166 selec-w - false TEN-0159 @@ -10248,7 +10089,6 @@ RES-0167 selec-w - false TEN-0160 @@ -10310,7 +10150,6 @@ RES-0168 selec-w - false TEN-0161 @@ -10372,7 +10211,6 @@ RES-0169 selec-w - false TEN-0162 @@ -10434,7 +10272,6 @@ RES-0170 selec-w - false TEN-0163 @@ -10496,7 +10333,6 @@ RES-0171 selec-w - false TEN-0164 @@ -10558,7 +10394,6 @@ RES-0172 selec-w - false TEN-0165 @@ -10621,7 +10456,7 @@ RES-0173 clos-nw - no-rece + no-rece tenders @@ -10674,7 +10509,6 @@ RES-0174 selec-w - false TEN-0166 @@ -10737,7 +10571,7 @@ RES-0175 clos-nw - no-rece + no-rece tenders @@ -10790,7 +10624,6 @@ RES-0176 selec-w - false TEN-0167 @@ -10852,7 +10685,6 @@ RES-0177 selec-w - false TEN-0168 @@ -10914,7 +10746,6 @@ RES-0178 selec-w - false TEN-0169 @@ -10976,7 +10807,6 @@ RES-0179 selec-w - false TEN-0170 @@ -11038,7 +10868,6 @@ RES-0180 selec-w - false TEN-0171 @@ -11101,7 +10930,7 @@ RES-0181 clos-nw - no-rece + no-rece tenders @@ -11154,7 +10983,6 @@ RES-0182 selec-w - false TEN-0172 @@ -11216,7 +11044,6 @@ RES-0183 selec-w - false TEN-0173 @@ -11278,7 +11105,6 @@ RES-0184 selec-w - false TEN-0174 @@ -11340,7 +11166,6 @@ RES-0185 selec-w - false TEN-0175 @@ -11402,7 +11227,6 @@ RES-0186 selec-w - false TEN-0176 @@ -11464,7 +11288,6 @@ RES-0187 selec-w - false TEN-0177 @@ -11526,7 +11349,6 @@ RES-0188 selec-w - false TEN-0178 @@ -11588,7 +11410,6 @@ RES-0189 selec-w - false TEN-0179 @@ -11650,7 +11471,6 @@ RES-0190 selec-w - false TEN-0180 @@ -11712,7 +11532,6 @@ RES-0191 selec-w - false TEN-0181 @@ -11774,7 +11593,6 @@ RES-0192 selec-w - false TEN-0182 @@ -11836,7 +11654,6 @@ RES-0193 selec-w - false TEN-0183 @@ -11898,7 +11715,6 @@ RES-0194 selec-w - false TEN-0184 @@ -11960,7 +11776,6 @@ RES-0195 selec-w - false TEN-0185 @@ -12022,7 +11837,6 @@ RES-0196 selec-w - false TEN-0186 @@ -12084,7 +11898,6 @@ RES-0197 selec-w - false TEN-0187 @@ -12147,7 +11960,7 @@ RES-0198 clos-nw - no-rece + no-rece tenders @@ -12201,7 +12014,7 @@ RES-0199 clos-nw - no-rece + no-rece tenders @@ -12254,7 +12067,6 @@ RES-0200 selec-w - false TEN-0188 @@ -12316,7 +12128,6 @@ RES-0201 selec-w - false TEN-0189 @@ -12378,7 +12189,6 @@ RES-0202 selec-w - false TEN-0190 @@ -12440,7 +12250,6 @@ RES-0203 selec-w - false TEN-0191 @@ -12502,7 +12311,6 @@ RES-0204 selec-w - false TEN-0192 @@ -12564,7 +12372,6 @@ RES-0205 selec-w - false TEN-0193 @@ -12626,7 +12433,6 @@ RES-0206 selec-w - false TEN-0194 @@ -12688,7 +12494,6 @@ RES-0207 selec-w - false TEN-0195 @@ -12750,7 +12555,6 @@ RES-0208 selec-w - false TEN-0196 @@ -12812,7 +12616,6 @@ RES-0209 selec-w - false TEN-0197 @@ -12874,7 +12677,6 @@ RES-0210 selec-w - false TEN-0198 @@ -12936,7 +12738,6 @@ RES-0211 selec-w - false TEN-0199 @@ -12998,7 +12799,6 @@ RES-0212 selec-w - false TEN-0200 @@ -13060,7 +12860,6 @@ RES-0213 selec-w - false TEN-0201 @@ -13122,7 +12921,6 @@ RES-0214 selec-w - false TEN-0202 @@ -13184,7 +12982,6 @@ RES-0215 selec-w - false TEN-0203 @@ -13246,7 +13043,6 @@ RES-0216 selec-w - false TEN-0204 @@ -13308,7 +13104,6 @@ RES-0217 selec-w - false TEN-0205 @@ -13370,7 +13165,6 @@ RES-0218 selec-w - false TEN-0206 @@ -13432,7 +13226,6 @@ RES-0219 selec-w - false TEN-0207 @@ -13494,7 +13287,6 @@ RES-0220 selec-w - false TEN-0208 @@ -13556,7 +13348,6 @@ RES-0221 selec-w - false TEN-0209 @@ -13618,7 +13409,6 @@ RES-0222 selec-w - false TEN-0210 @@ -13680,7 +13470,6 @@ RES-0223 selec-w - false TEN-0211 @@ -13742,7 +13531,6 @@ RES-0224 selec-w - false TEN-0212 @@ -13804,7 +13592,6 @@ RES-0225 selec-w - false TEN-0213 @@ -13866,7 +13653,6 @@ RES-0226 selec-w - false TEN-0214 @@ -13928,7 +13714,6 @@ RES-0227 selec-w - false TEN-0215 @@ -13990,7 +13775,6 @@ RES-0228 selec-w - false TEN-0216 @@ -14052,7 +13836,6 @@ RES-0229 selec-w - false TEN-0217 @@ -14114,7 +13897,6 @@ RES-0230 selec-w - false TEN-0218 @@ -14176,7 +13958,6 @@ RES-0231 selec-w - false TEN-0219 @@ -14238,7 +14019,6 @@ RES-0232 selec-w - false TEN-0220 @@ -14301,7 +14081,7 @@ RES-0233 clos-nw - all-rej + all-rej tenders @@ -14354,7 +14134,6 @@ RES-0234 selec-w - false TEN-0221 @@ -14416,7 +14195,6 @@ RES-0235 selec-w - false TEN-0222 @@ -14478,7 +14256,6 @@ RES-0236 selec-w - false TEN-0223 @@ -14540,7 +14317,6 @@ RES-0237 selec-w - false TEN-0224 @@ -14602,7 +14378,6 @@ RES-0238 selec-w - false TEN-0225 @@ -14664,7 +14439,6 @@ RES-0239 selec-w - false TEN-0226 @@ -14726,7 +14500,6 @@ RES-0240 selec-w - false TEN-0227 @@ -14788,7 +14561,6 @@ RES-0241 selec-w - false TEN-0228 @@ -14850,7 +14622,6 @@ RES-0242 selec-w - false TEN-0229 @@ -14912,7 +14683,6 @@ RES-0243 selec-w - false TEN-0230 @@ -14974,7 +14744,6 @@ RES-0244 selec-w - false TEN-0231 @@ -15036,7 +14805,6 @@ RES-0245 selec-w - false TEN-0232 @@ -15098,7 +14866,6 @@ RES-0246 selec-w - false TEN-0233 @@ -15160,7 +14927,6 @@ RES-0247 selec-w - false TEN-0234 @@ -15222,7 +14988,6 @@ RES-0248 selec-w - false TEN-0235 @@ -15284,7 +15049,6 @@ RES-0249 selec-w - false TEN-0236 @@ -15346,7 +15110,6 @@ RES-0250 selec-w - false TEN-0237 @@ -15409,7 +15172,7 @@ RES-0251 clos-nw - no-rece + no-rece tenders @@ -15462,7 +15225,6 @@ RES-0252 selec-w - false TEN-0238 @@ -15524,7 +15286,6 @@ RES-0253 selec-w - false TEN-0239 @@ -15587,7 +15348,7 @@ RES-0254 clos-nw - no-rece + no-rece tenders @@ -15640,7 +15401,6 @@ RES-0255 selec-w - false TEN-0240 @@ -15702,7 +15462,6 @@ RES-0256 selec-w - false TEN-0241 @@ -15764,7 +15523,6 @@ RES-0257 selec-w - false TEN-0242 @@ -15826,7 +15584,6 @@ RES-0258 selec-w - false TEN-0243 @@ -15888,7 +15645,6 @@ RES-0259 selec-w - false TEN-0244 @@ -15950,7 +15706,6 @@ RES-0260 selec-w - false TEN-0245 @@ -16012,7 +15767,6 @@ RES-0261 selec-w - false TEN-0246 @@ -16074,7 +15828,6 @@ RES-0262 selec-w - false TEN-0247 @@ -16136,7 +15889,6 @@ RES-0263 selec-w - false TEN-0248 @@ -16198,7 +15950,6 @@ RES-0264 selec-w - false TEN-0249 @@ -16260,7 +16011,6 @@ RES-0265 selec-w - false TEN-0250 @@ -16322,7 +16072,6 @@ RES-0266 selec-w - false TEN-0251 @@ -16384,7 +16133,6 @@ RES-0267 selec-w - false TEN-0252 @@ -16446,7 +16194,6 @@ RES-0268 selec-w - false TEN-0253 @@ -16508,7 +16255,6 @@ RES-0269 selec-w - false TEN-0254 @@ -16571,7 +16317,7 @@ RES-0270 clos-nw - no-rece + no-rece tenders @@ -16624,7 +16370,6 @@ RES-0271 selec-w - false TEN-0255 @@ -16686,7 +16431,6 @@ RES-0272 selec-w - false TEN-0256 @@ -16748,7 +16492,6 @@ RES-0273 selec-w - false TEN-0257 @@ -16810,7 +16553,6 @@ RES-0274 selec-w - false TEN-0258 @@ -16872,7 +16614,6 @@ RES-0275 selec-w - false TEN-0259 @@ -16934,7 +16675,6 @@ RES-0276 selec-w - false TEN-0260 @@ -16996,7 +16736,6 @@ RES-0277 selec-w - false TEN-0261 @@ -17058,7 +16797,6 @@ RES-0278 selec-w - false TEN-0262 @@ -17121,7 +16859,7 @@ RES-0279 clos-nw - no-rece + no-rece tenders @@ -17175,7 +16913,7 @@ RES-0280 clos-nw - no-rece + no-rece tenders @@ -17228,7 +16966,6 @@ RES-0281 selec-w - false TEN-0263 @@ -17290,7 +17027,6 @@ RES-0282 selec-w - false TEN-0264 @@ -17353,7 +17089,7 @@ RES-0283 clos-nw - no-rece + no-rece tenders @@ -17406,7 +17142,6 @@ RES-0284 selec-w - false TEN-0265 @@ -17468,7 +17203,6 @@ RES-0285 selec-w - false TEN-0266 @@ -17530,7 +17264,6 @@ RES-0286 selec-w - false TEN-0267 @@ -17592,7 +17325,6 @@ RES-0287 selec-w - false TEN-0268 @@ -17654,7 +17386,6 @@ RES-0288 selec-w - false TEN-0269 @@ -17716,7 +17447,6 @@ RES-0289 selec-w - false TEN-0270 @@ -17778,7 +17508,6 @@ RES-0290 selec-w - false TEN-0271 @@ -17840,7 +17569,6 @@ RES-0291 selec-w - false TEN-0272 @@ -17903,7 +17631,7 @@ RES-0292 clos-nw - all-rej + all-rej tenders @@ -17957,7 +17685,7 @@ RES-0293 clos-nw - all-rej + all-rej tenders @@ -18011,7 +17739,7 @@ RES-0294 clos-nw - all-rej + all-rej tenders @@ -18064,7 +17792,6 @@ RES-0295 selec-w - false TEN-0273 @@ -18126,7 +17853,6 @@ RES-0296 selec-w - false TEN-0274 @@ -18188,7 +17914,6 @@ RES-0297 selec-w - false TEN-0275 @@ -18250,7 +17975,6 @@ RES-0298 selec-w - false TEN-0276 @@ -18312,7 +18036,6 @@ RES-0299 selec-w - false TEN-0277 @@ -18374,7 +18097,6 @@ RES-0300 selec-w - false TEN-0278 @@ -18436,7 +18158,6 @@ RES-0301 selec-w - false TEN-0279 @@ -18499,7 +18220,7 @@ RES-0302 clos-nw - no-rece + no-rece tenders @@ -18552,7 +18273,6 @@ RES-0303 selec-w - false TEN-0280 @@ -18615,7 +18335,7 @@ RES-0304 clos-nw - no-rece + no-rece tenders @@ -18669,7 +18389,7 @@ RES-0305 clos-nw - no-rece + no-rece tenders @@ -18723,7 +18443,7 @@ RES-0306 clos-nw - no-rece + no-rece tenders @@ -18777,7 +18497,7 @@ RES-0307 clos-nw - no-rece + no-rece tenders @@ -18831,7 +18551,7 @@ RES-0308 clos-nw - no-rece + no-rece tenders @@ -18885,7 +18605,7 @@ RES-0309 clos-nw - no-rece + no-rece tenders @@ -18939,7 +18659,7 @@ RES-0310 clos-nw - no-rece + no-rece tenders @@ -18993,7 +18713,7 @@ RES-0311 clos-nw - no-rece + no-rece tenders @@ -19047,7 +18767,7 @@ RES-0312 clos-nw - no-rece + no-rece tenders @@ -19101,7 +18821,7 @@ RES-0313 clos-nw - no-rece + no-rece tenders @@ -19155,7 +18875,7 @@ RES-0314 clos-nw - no-rece + no-rece tenders @@ -19209,7 +18929,7 @@ RES-0315 clos-nw - no-rece + no-rece tenders @@ -19263,7 +18983,7 @@ RES-0316 clos-nw - no-rece + no-rece tenders @@ -19317,7 +19037,7 @@ RES-0317 clos-nw - no-rece + no-rece tenders @@ -19371,7 +19091,7 @@ RES-0318 clos-nw - no-rece + no-rece tenders @@ -19425,7 +19145,7 @@ RES-0319 clos-nw - no-rece + no-rece tenders @@ -19479,7 +19199,7 @@ RES-0320 clos-nw - no-rece + no-rece tenders @@ -19533,7 +19253,7 @@ RES-0321 clos-nw - no-rece + no-rece tenders @@ -19587,7 +19307,7 @@ RES-0322 clos-nw - no-rece + no-rece tenders @@ -19641,7 +19361,7 @@ RES-0323 clos-nw - no-rece + no-rece tenders @@ -19695,7 +19415,7 @@ RES-0324 clos-nw - no-rece + no-rece tenders @@ -19749,7 +19469,7 @@ RES-0325 clos-nw - no-rece + no-rece tenders @@ -19803,7 +19523,7 @@ RES-0326 clos-nw - no-rece + no-rece tenders @@ -19857,7 +19577,7 @@ RES-0327 clos-nw - no-rece + no-rece tenders @@ -19911,7 +19631,7 @@ RES-0328 clos-nw - no-rece + no-rece tenders @@ -19965,7 +19685,7 @@ RES-0329 clos-nw - no-rece + no-rece tenders @@ -20019,7 +19739,7 @@ RES-0330 clos-nw - no-rece + no-rece tenders @@ -20073,7 +19793,7 @@ RES-0331 clos-nw - no-rece + no-rece tenders @@ -20127,7 +19847,7 @@ RES-0332 clos-nw - no-rece + no-rece tenders @@ -20181,7 +19901,7 @@ RES-0333 clos-nw - no-rece + no-rece tenders @@ -20235,7 +19955,7 @@ RES-0334 clos-nw - no-rece + no-rece tenders @@ -20289,7 +20009,7 @@ RES-0335 clos-nw - no-rece + no-rece tenders @@ -20343,7 +20063,7 @@ RES-0336 clos-nw - no-rece + no-rece tenders @@ -20397,7 +20117,7 @@ RES-0337 clos-nw - no-rece + no-rece tenders @@ -20451,7 +20171,7 @@ RES-0338 clos-nw - no-rece + no-rece tenders @@ -20505,7 +20225,7 @@ RES-0339 clos-nw - no-rece + no-rece tenders @@ -20559,7 +20279,7 @@ RES-0340 clos-nw - no-rece + no-rece tenders @@ -20613,7 +20333,7 @@ RES-0341 clos-nw - no-rece + no-rece tenders @@ -20667,7 +20387,7 @@ RES-0342 clos-nw - no-rece + no-rece tenders @@ -20721,7 +20441,7 @@ RES-0343 clos-nw - no-rece + no-rece tenders @@ -20775,7 +20495,7 @@ RES-0344 clos-nw - no-rece + no-rece tenders @@ -20829,7 +20549,7 @@ RES-0345 clos-nw - no-rece + no-rece tenders @@ -20883,7 +20603,7 @@ RES-0346 clos-nw - no-rece + no-rece tenders @@ -20937,7 +20657,7 @@ RES-0347 clos-nw - no-rece + no-rece tenders @@ -20991,7 +20711,7 @@ RES-0348 clos-nw - no-rece + no-rece tenders @@ -21044,7 +20764,6 @@ RES-0349 selec-w - false TEN-0281 @@ -21106,7 +20825,6 @@ RES-0350 selec-w - false TEN-0282 @@ -21169,7 +20887,7 @@ RES-0351 clos-nw - no-rece + no-rece tenders @@ -21223,7 +20941,7 @@ RES-0352 clos-nw - no-rece + no-rece tenders @@ -21277,7 +20995,7 @@ RES-0353 clos-nw - no-rece + no-rece tenders @@ -21331,7 +21049,7 @@ RES-0354 clos-nw - no-rece + no-rece tenders @@ -21385,7 +21103,7 @@ RES-0355 clos-nw - no-rece + no-rece tenders @@ -21438,7 +21156,6 @@ RES-0356 selec-w - false TEN-0283 @@ -21500,7 +21217,6 @@ RES-0357 selec-w - false TEN-0284 @@ -21563,7 +21279,7 @@ RES-0358 clos-nw - no-rece + no-rece tenders @@ -21617,7 +21333,7 @@ RES-0359 clos-nw - no-rece + no-rece tenders @@ -21671,7 +21387,7 @@ RES-0360 clos-nw - no-rece + no-rece tenders @@ -21725,7 +21441,7 @@ RES-0361 clos-nw - no-rece + no-rece tenders @@ -21779,7 +21495,7 @@ RES-0362 clos-nw - no-rece + no-rece tenders @@ -21833,7 +21549,7 @@ RES-0363 clos-nw - no-rece + no-rece tenders @@ -21887,7 +21603,7 @@ RES-0364 clos-nw - no-rece + no-rece tenders @@ -21941,7 +21657,7 @@ RES-0365 clos-nw - no-rece + no-rece tenders @@ -21995,7 +21711,7 @@ RES-0366 clos-nw - no-rece + no-rece tenders @@ -22049,7 +21765,7 @@ RES-0367 clos-nw - no-rece + no-rece tenders @@ -22103,7 +21819,7 @@ RES-0368 clos-nw - no-rece + no-rece tenders @@ -22157,7 +21873,7 @@ RES-0369 clos-nw - no-rece + no-rece tenders @@ -22211,7 +21927,7 @@ RES-0370 clos-nw - no-rece + no-rece tenders @@ -22265,7 +21981,7 @@ RES-0371 clos-nw - no-rece + no-rece tenders @@ -22319,7 +22035,7 @@ RES-0372 clos-nw - no-rece + no-rece tenders @@ -22373,7 +22089,7 @@ RES-0373 clos-nw - no-rece + no-rece tenders @@ -22427,7 +22143,7 @@ RES-0374 clos-nw - no-rece + no-rece tenders @@ -22481,7 +22197,7 @@ RES-0375 clos-nw - no-rece + no-rece tenders @@ -22535,7 +22251,7 @@ RES-0376 clos-nw - no-rece + no-rece tenders @@ -22589,7 +22305,7 @@ RES-0377 clos-nw - no-rece + no-rece tenders @@ -22643,7 +22359,7 @@ RES-0378 clos-nw - no-rece + no-rece tenders @@ -22697,7 +22413,7 @@ RES-0379 clos-nw - no-rece + no-rece tenders @@ -22751,7 +22467,7 @@ RES-0380 clos-nw - no-rece + no-rece tenders @@ -22805,7 +22521,7 @@ RES-0381 clos-nw - no-rece + no-rece tenders @@ -22859,7 +22575,7 @@ RES-0382 clos-nw - no-rece + no-rece tenders @@ -22913,7 +22629,7 @@ RES-0383 clos-nw - no-rece + no-rece tenders @@ -22966,7 +22682,6 @@ RES-0384 selec-w - false TEN-0285 @@ -27305,8 +27020,11 @@ CON-0001 2023-07-24+02:00 - Triamcinolone acetonide ,demeclocycline hydrochloride (Ledermix) + Triamcinolone acetonide ,demeclocycline hydrochloride (Ledermix) https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-1 + TEN-0001 @@ -27314,8 +27032,11 @@ CON-0002 2023-07-24+02:00 - Lidocaini hydrochloridum, Matricariae extractum fluidum + Lidocaini hydrochloridum, Matricariae extractum fluidum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-2 + TEN-0002 @@ -27323,8 +27044,11 @@ CON-0003 2023-07-24+02:00 - Omeprazolum + Omeprazolum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-3 + TEN-0003 @@ -27332,8 +27056,11 @@ CON-0004 2023-07-24+02:00 - Pantoprazolum + Pantoprazolum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-4 + TEN-0004 @@ -27341,8 +27068,11 @@ CON-0005 2023-07-24+02:00 - Drotaverini hydrochlorium + Drotaverini hydrochlorium https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-5 + TEN-0005 @@ -27350,8 +27080,11 @@ CON-0006 2023-07-24+02:00 - Atropini sulfas + Atropini sulfas https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-6 + TEN-0006 @@ -27359,8 +27092,11 @@ CON-0007 2023-07-24+02:00 - Butylscopolamini bromidum + Butylscopolamini bromidum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-7 + TEN-0007 @@ -27368,8 +27104,11 @@ CON-0008 2023-07-24+02:00 - Metoclopramidum + Metoclopramidum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-8 + TEN-0008 @@ -27377,8 +27116,11 @@ CON-0009 2023-07-24+02:00 - Ondansetronum + Ondansetronum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-9 + TEN-0009 @@ -27386,8 +27128,11 @@ CON-0010 2023-07-24+02:00 - Bisacodilum + Bisacodilum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-10 + TEN-0010 @@ -27395,8 +27140,11 @@ CON-0011 2023-07-24+02:00 - Lactulosum + Lactulosum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-11 + TEN-0011 @@ -27404,8 +27152,11 @@ CON-0012 2023-07-24+02:00 - Sorbitolum, Natrii citras, Natrii laurilsulfoacetas + Sorbitolum, Natrii citras, Natrii laurilsulfoacetas https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-12 + TEN-0012 @@ -27413,8 +27164,11 @@ CON-0013 2023-07-24+02:00 - Loperamidum + Loperamidum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-13 + TEN-0013 @@ -27422,8 +27176,11 @@ CON-0014 2023-07-24+02:00 - Insulinum lispro - ātras darbības insulīni, to analogi + Insulinum lispro - ātras darbības insulīni, to analogi https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-14 + TEN-0014 @@ -27431,8 +27188,11 @@ CON-0015 2023-07-24+02:00 - Insulinum aspartum - ātras darbības insulīni, to analogi + Insulinum aspartum - ātras darbības insulīni, to analogi https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-15 + TEN-0015 @@ -27440,8 +27200,11 @@ CON-0016 2023-07-24+02:00 - Insulinum glarginum - garas darbības insulīni, to analogi + Insulinum glarginum - garas darbības insulīni, to analogi https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-16 + TEN-0016 @@ -27449,8 +27212,11 @@ CON-0017 2023-07-24+02:00 - Metformini hydrochloridum + Metformini hydrochloridum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-17 + TEN-0017 @@ -27458,8 +27224,11 @@ CON-0018 2023-07-24+02:00 - Metformini hydrochloridum + Metformini hydrochloridum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-18 + TEN-0018 @@ -27467,8 +27236,11 @@ CON-0019 2023-07-24+02:00 - Thiamini hydrochloridum + Thiamini hydrochloridum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-19 + TEN-0019 @@ -27476,8 +27248,11 @@ CON-0020 2023-07-24+02:00 - Pyridoxini hydrochloridum + Pyridoxini hydrochloridum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-20 + TEN-0020 @@ -27485,8 +27260,11 @@ CON-0021 2023-07-24+02:00 - Calcii gluconas + Calcii gluconas https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-21 + TEN-0021 @@ -27494,8 +27272,11 @@ CON-0022 2023-07-24+02:00 - Heparinum natricum + Heparinum natricum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-22 + TEN-0022 @@ -27503,8 +27284,11 @@ CON-0023 2023-07-24+02:00 - Heparinum natricum + Heparinum natricum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-23 + TEN-0023 @@ -27512,8 +27296,11 @@ CON-0024 2023-07-24+02:00 - Bemiparinum natrium + Bemiparinum natrium https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-24 + TEN-0024 @@ -27521,8 +27308,11 @@ CON-0025 2023-07-24+02:00 - Bemiparinum natrium + Bemiparinum natrium https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-25 + TEN-0025 @@ -27530,8 +27320,11 @@ CON-0026 2023-07-24+02:00 - Nadroparinum calcicum + Nadroparinum calcicum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-26 + TEN-0026 @@ -27539,8 +27332,11 @@ CON-0027 2023-07-24+02:00 - Nadroparinum calcicum + Nadroparinum calcicum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-27 + TEN-0027 @@ -27548,8 +27344,11 @@ CON-0028 2023-07-24+02:00 - Acidum acetylsalicylicum + Acidum acetylsalicylicum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-28 + TEN-0028 @@ -27557,8 +27356,11 @@ CON-0029 2023-07-24+02:00 - Rivaroxabanum + Rivaroxabanum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-29 + TEN-0029 @@ -27566,8 +27368,11 @@ CON-0030 2023-07-24+02:00 - Etamsylatum + Etamsylatum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-30 + TEN-0030 @@ -27575,8 +27380,11 @@ CON-0031 2023-07-24+02:00 - Acidum tranexamicum + Acidum tranexamicum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-31 + TEN-0031 @@ -27584,8 +27392,11 @@ CON-0032 2023-07-24+02:00 - Phytomenadionum + Phytomenadionum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-32 + TEN-0032 @@ -27593,8 +27404,11 @@ CON-0033 2023-07-24+02:00 - Phytomenadionum + Phytomenadionum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-33 + TEN-0033 @@ -27602,8 +27416,11 @@ CON-0034 2023-07-24+02:00 - Cyanocobolaminum + Cyanocobolaminum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-34 + TEN-0034 @@ -27611,8 +27428,11 @@ CON-0035 2023-07-24+02:00 - *Elektrolītu šķīdums (Ringera) + *Elektrolītu šķīdums (Ringera) https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-35 + TEN-0035 @@ -27620,8 +27440,11 @@ CON-0036 2023-11-06+02:00 - **Elektrolītu šķīdums (Ringera) + **Elektrolītu šķīdums (Ringera) https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-36 + TEN-0036 @@ -27629,8 +27452,11 @@ CON-0037 2023-07-24+02:00 - *Elektrolītu šķīdums (Ringera) + *Elektrolītu šķīdums (Ringera) https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-37 + TEN-0037 @@ -27638,8 +27464,11 @@ CON-0038 2023-07-24+02:00 - **Elektrolītu šķīdums (Ringera) + **Elektrolītu šķīdums (Ringera) https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-38 + TEN-0038 @@ -27647,8 +27476,11 @@ CON-0039 2023-07-24+02:00 - *Elektolīti un ogļhidrāti (Sterofundin BG-5) + *Elektolīti un ogļhidrāti (Sterofundin BG-5) https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-39 + TEN-0039 @@ -27656,8 +27488,11 @@ CON-0040 2023-07-24+02:00 - *Elektolīti un ogļhidrāti (Sterofundin BG-5) + *Elektolīti un ogļhidrāti (Sterofundin BG-5) https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-40 + TEN-0040 @@ -27665,8 +27500,11 @@ CON-0041 2023-07-24+02:00 - *Glucosum + *Glucosum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-41 + TEN-0041 @@ -27674,8 +27512,11 @@ CON-0042 2023-07-24+02:00 - **Glucosum + **Glucosum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-42 + TEN-0042 @@ -27683,8 +27524,11 @@ CON-0043 2023-07-24+02:00 - *Glucosum + *Glucosum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-43 + TEN-0043 @@ -27692,8 +27536,11 @@ CON-0044 2023-07-24+02:00 - **Glucosum + **Glucosum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-44 + TEN-0044 @@ -27701,8 +27548,11 @@ CON-0045 2023-07-24+02:00 - *Glucosum + *Glucosum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-45 + TEN-0045 @@ -27710,8 +27560,11 @@ CON-0046 2023-07-24+02:00 - Glucosum + Glucosum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-46 + TEN-0046 @@ -27719,8 +27572,11 @@ CON-0047 2023-07-24+02:00 - Glucosum + Glucosum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-47 + TEN-0047 @@ -27728,8 +27584,11 @@ CON-0048 2023-07-24+02:00 - Gelatinum succinas, Natrii chloridum, Natrii hydroxidum + Gelatinum succinas, Natrii chloridum, Natrii hydroxidum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-48 + TEN-0048 @@ -27737,8 +27596,11 @@ 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. + 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 + + CON-REF-49 + TEN-0049 @@ -27746,8 +27608,11 @@ 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. + 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 + + CON-REF-50 + TEN-0050 @@ -27755,8 +27620,11 @@ CON-0051 2023-07-24+02:00 - *Mannitolum + *Mannitolum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-51 + TEN-0051 @@ -27764,8 +27632,11 @@ CON-0052 2023-07-24+02:00 - Kalii chloridum + Kalii chloridum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-52 + TEN-0052 @@ -27773,8 +27644,11 @@ CON-0053 2023-07-24+02:00 - Kalii chloridum + Kalii chloridum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-53 + TEN-0053 @@ -27782,8 +27656,11 @@ CON-0054 2023-07-24+02:00 - Natrii chloridum + Natrii chloridum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-54 + TEN-0054 @@ -27791,8 +27668,11 @@ CON-0055 2023-07-24+02:00 - Natrii chloridum + Natrii chloridum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-55 + TEN-0055 @@ -27800,8 +27680,11 @@ CON-0056 2023-07-24+02:00 - *Natrii chloridum + *Natrii chloridum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-56 + TEN-0056 @@ -27809,8 +27692,11 @@ CON-0057 2023-07-24+02:00 - **Natrii chloridum + **Natrii chloridum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-57 + TEN-0057 @@ -27818,8 +27704,11 @@ CON-0058 2023-07-24+02:00 - *Natrii chloridum + *Natrii chloridum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-58 + TEN-0058 @@ -27827,8 +27716,11 @@ CON-0059 2023-07-24+02:00 - **Natrii chloridum + **Natrii chloridum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-59 + TEN-0059 @@ -27836,8 +27728,11 @@ CON-0060 2023-07-24+02:00 - *Natrii chloridum + *Natrii chloridum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-60 + TEN-0060 @@ -27845,8 +27740,11 @@ CON-0061 2023-07-24+02:00 - **Natrii chloridum + **Natrii chloridum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-61 + TEN-0061 @@ -27854,8 +27752,11 @@ CON-0062 2023-07-24+02:00 - Natrii chloridum + Natrii chloridum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-62 + TEN-0062 @@ -27863,8 +27764,11 @@ CON-0063 2023-07-24+02:00 - Natrii chloridum + Natrii chloridum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-63 + TEN-0063 @@ -27872,8 +27776,11 @@ CON-0064 2023-07-24+02:00 - *Natrii chloridum + *Natrii chloridum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-64 + TEN-0064 @@ -27881,8 +27788,11 @@ CON-0065 2023-07-24+02:00 - **Natrii chloridum + **Natrii chloridum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-65 + TEN-0065 @@ -27890,8 +27800,11 @@ CON-0066 2023-07-24+02:00 - **Natrii chloridum + **Natrii chloridum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-66 + TEN-0066 @@ -27899,8 +27812,11 @@ CON-0067 2023-07-24+02:00 - Natrii chloridum + Natrii chloridum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-67 + TEN-0067 @@ -27908,8 +27824,11 @@ CON-0068 2023-07-24+02:00 - Natrii chloridum + Natrii chloridum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-68 + TEN-0068 @@ -27917,8 +27836,11 @@ CON-0069 2023-07-24+02:00 - Natrii hydrocarbonas + Natrii hydrocarbonas https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-69 + TEN-0069 @@ -27926,8 +27848,11 @@ CON-0070 2023-07-24+02:00 - Natrii hydrocarbonas + Natrii hydrocarbonas https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-70 + TEN-0070 @@ -27935,8 +27860,11 @@ CON-0071 2023-07-24+02:00 - Magnesii sulfas + Magnesii sulfas https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-71 + TEN-0071 @@ -27944,8 +27872,11 @@ CON-0072 2023-07-24+02:00 - Digoxinum + Digoxinum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-72 + TEN-0072 @@ -27953,8 +27884,11 @@ CON-0073 2023-07-24+02:00 - Amiodaronum + Amiodaronum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-73 + TEN-0073 @@ -27962,8 +27896,11 @@ CON-0074 2023-07-24+02:00 - Norepinephrinum + Norepinephrinum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-74 + TEN-0074 @@ -27971,8 +27908,11 @@ CON-0075 2023-07-24+02:00 - Ephedrini hydrohloridum + Ephedrini hydrohloridum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-75 + TEN-0075 @@ -27980,8 +27920,11 @@ CON-0076 2023-07-24+02:00 - Dopamini hydrochloridum + Dopamini hydrochloridum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-76 + TEN-0076 @@ -27989,8 +27932,11 @@ CON-0077 2023-07-24+02:00 - Dobutaminum + Dobutaminum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-77 + TEN-0077 @@ -27998,8 +27944,11 @@ CON-0078 2023-07-24+02:00 - Epinephrinum + Epinephrinum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-78 + TEN-0078 @@ -28007,8 +27956,11 @@ CON-0079 2023-07-24+02:00 - Glyceroli trinitras + Glyceroli trinitras https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-79 + TEN-0079 @@ -28016,8 +27968,11 @@ CON-0080 2023-07-24+02:00 - Meldonium + Meldonium https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-80 + TEN-0080 @@ -28025,8 +27980,11 @@ CON-0081 2023-07-24+02:00 - Adenosinum + Adenosinum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-81 + TEN-0081 @@ -28034,8 +27992,11 @@ CON-0082 2023-07-24+02:00 - Ivabradinum + Ivabradinum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-82 + TEN-0082 @@ -28043,8 +28004,11 @@ CON-0083 2023-10-26+02:00 - Clonidinum + Clonidinum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-83 + TEN-0083 @@ -28052,8 +28016,11 @@ CON-0084 2023-07-24+02:00 - Clonidinum + Clonidinum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-84 + TEN-0084 @@ -28061,8 +28028,11 @@ CON-0085 2023-07-24+02:00 - Furosemidum + Furosemidum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-85 + TEN-0085 @@ -28070,8 +28040,11 @@ CON-0086 2023-07-24+02:00 - Furosemidum + Furosemidum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-86 + TEN-0086 @@ -28079,8 +28052,11 @@ CON-0087 2023-07-24+02:00 - Torasemidum + Torasemidum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-87 + TEN-0087 @@ -28088,8 +28064,11 @@ CON-0088 2023-07-24+02:00 - Spironolactonum + Spironolactonum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-88 + TEN-0088 @@ -28097,8 +28076,11 @@ CON-0089 2023-10-11+02:00 - Pentoxifyllinum + Pentoxifyllinum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-89 + TEN-0089 @@ -28106,8 +28088,11 @@ CON-0090 2023-07-24+02:00 - Xylocain + Xylocain https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-90 + TEN-0090 @@ -28115,8 +28100,11 @@ CON-0091 2023-07-24+02:00 - Xylocain + Xylocain https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-91 + TEN-0091 @@ -28124,8 +28112,11 @@ CON-0092 2023-07-24+02:00 - Troxerutinum + Troxerutinum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-92 + TEN-0092 @@ -28133,8 +28124,11 @@ CON-0093 2023-07-24+02:00 - Polidocanolum + Polidocanolum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-93 + TEN-0093 @@ -28142,8 +28136,11 @@ CON-0094 2023-07-24+02:00 - Propranololum + Propranololum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-94 + TEN-0094 @@ -28151,8 +28148,11 @@ CON-0095 2023-07-24+02:00 - Metoprololi tartras + Metoprololi tartras https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-95 + TEN-0095 @@ -28160,8 +28160,11 @@ CON-0096 2023-07-24+02:00 - Bisoprololi fumaras + Bisoprololi fumaras https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-96 + TEN-0096 @@ -28169,8 +28172,11 @@ CON-0097 2023-07-24+02:00 - Nebivololum + Nebivololum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-97 + TEN-0097 @@ -28178,8 +28184,11 @@ CON-0098 2023-07-24+02:00 - Labetalolum + Labetalolum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-98 + TEN-0098 @@ -28187,8 +28196,11 @@ CON-0099 2023-07-24+02:00 - Amlodipinum + Amlodipinum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-99 + TEN-0099 @@ -28196,8 +28208,11 @@ CON-0100 2023-07-24+02:00 - Nitrendipinum + Nitrendipinum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-100 + TEN-0100 @@ -28205,8 +28220,11 @@ CON-0101 2023-07-24+02:00 - Verapamili hydrochloridum + Verapamili hydrochloridum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-101 + TEN-0101 @@ -28214,8 +28232,11 @@ CON-0102 2023-07-24+02:00 - Captoprilum + Captoprilum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-102 + TEN-0102 @@ -28223,8 +28244,11 @@ CON-0103 2023-07-24+02:00 - Enalaprilum + Enalaprilum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-103 + TEN-0103 @@ -28232,8 +28256,11 @@ CON-0104 2023-07-24+02:00 - Enalaprilatum + Enalaprilatum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-104 + TEN-0104 @@ -28241,8 +28268,11 @@ CON-0105 2023-07-24+02:00 - Perindoprili argininum + Perindoprili argininum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-105 + TEN-0105 @@ -28250,8 +28280,11 @@ CON-0106 2023-07-24+02:00 - Isoconazoli nitras, Diflucortoloni valeras + Isoconazoli nitras, Diflucortoloni valeras https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-106 + TEN-0106 @@ -28259,8 +28292,11 @@ CON-0107 2023-07-24+02:00 - Zinci oxydum + Zinci oxydum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-107 + TEN-0107 @@ -28268,8 +28304,11 @@ CON-0108 2023-07-24+02:00 - Dexpanthenolum + Dexpanthenolum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-108 + TEN-0108 @@ -28277,8 +28316,11 @@ CON-0109 2023-07-24+02:00 - Dexpanthenolum + Dexpanthenolum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-109 + TEN-0109 @@ -28286,8 +28328,11 @@ CON-0110 2023-07-24+02:00 - Acidum fusidicum + Acidum fusidicum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-110 + TEN-0110 @@ -28295,8 +28340,11 @@ CON-0111 2023-07-24+02:00 - Acidum fusidicum + Acidum fusidicum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-111 + TEN-0111 @@ -28304,8 +28352,11 @@ CON-0112 2023-07-24+02:00 - Methyluracilum, Lidocainum + Methyluracilum, Lidocainum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-112 + TEN-0112 @@ -28313,8 +28364,11 @@ CON-0113 2023-07-24+02:00 - Methyluracilum, Chloramphenicolum + Methyluracilum, Chloramphenicolum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-113 + TEN-0113 @@ -28322,8 +28376,11 @@ CON-0114 2023-07-24+02:00 - Hydrocortisonum + Hydrocortisonum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-114 + TEN-0114 @@ -28331,8 +28388,11 @@ CON-0115 2023-07-24+02:00 - Fluocinoloni acetonidum + Fluocinoloni acetonidum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-115 + TEN-0115 @@ -28340,8 +28400,11 @@ CON-0116 2023-07-24+02:00 - Fluocinoloni acetonidum + Fluocinoloni acetonidum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-116 + TEN-0116 @@ -28349,8 +28412,11 @@ CON-0117 2023-07-24+02:00 - Acidum boricum + Acidum boricum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-117 + TEN-0117 @@ -28358,8 +28424,11 @@ CON-0118 2023-07-24+02:00 - Povidonum iodinatum + Povidonum iodinatum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-118 + TEN-0118 @@ -28367,8 +28436,11 @@ CON-0119 2023-07-24+02:00 - Povidonum iodinatum + Povidonum iodinatum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-119 + TEN-0119 @@ -28376,8 +28448,11 @@ CON-0120 2023-07-24+02:00 - Iodum + Iodum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-120 + TEN-0120 @@ -28385,8 +28460,11 @@ CON-0121 2023-07-24+02:00 - Viride nitens, sp.aethylicus + Viride nitens, sp.aethylicus https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-121 + TEN-0121 @@ -28394,8 +28472,11 @@ CON-0122 2023-07-24+02:00 - Hydrogenii peroxidum + Hydrogenii peroxidum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-122 + TEN-0122 @@ -28403,8 +28484,11 @@ CON-0123 2023-07-24+02:00 - E vitamīna acetāts, bišu vasks + E vitamīna acetāts, bišu vasks https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-123 + TEN-0123 @@ -28412,8 +28496,11 @@ CON-0124 2023-07-24+02:00 - Desmopressinum + Desmopressinum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-124 + TEN-0124 @@ -28421,8 +28508,11 @@ CON-0125 2023-07-24+02:00 - Oxytocinumum + Oxytocinumum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-125 + TEN-0125 @@ -28430,8 +28520,11 @@ CON-0126 2023-07-24+02:00 - Octreotidum + Octreotidum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-126 + TEN-0126 @@ -28439,8 +28532,11 @@ CON-0127 2023-07-24+02:00 - Dexamethasonum + Dexamethasonum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-127 + TEN-0127 @@ -28448,8 +28544,11 @@ CON-0128 2023-07-24+02:00 - Dexamethasonum + Dexamethasonum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-128 + TEN-0128 @@ -28457,8 +28556,11 @@ CON-0129 2023-07-24+02:00 - Methylprednisoloni acetas + Methylprednisoloni acetas https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-129 + TEN-0129 @@ -28466,8 +28568,11 @@ CON-0130 2023-07-24+02:00 - Methylprednisolonum + Methylprednisolonum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-130 + TEN-0130 @@ -28475,8 +28580,11 @@ CON-0131 2023-07-24+02:00 - Prednisolonum + Prednisolonum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-131 + TEN-0131 @@ -28484,8 +28592,11 @@ CON-0132 2023-07-24+02:00 - Hydrocortisonum + Hydrocortisonum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-132 + TEN-0132 @@ -28493,8 +28604,11 @@ CON-0133 2023-07-24+02:00 - Triamcinoloni acetonidum + Triamcinoloni acetonidum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-133 + TEN-0133 @@ -28502,8 +28616,11 @@ CON-0134 2023-07-24+02:00 - Thiamazolum + Thiamazolum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-134 + TEN-0134 @@ -28511,8 +28628,11 @@ CON-0135 2023-07-24+02:00 - Doxycyclinum + Doxycyclinum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-135 + TEN-0135 @@ -28520,8 +28640,11 @@ CON-0136 2023-07-24+02:00 - Amoxicillinum + Amoxicillinum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-136 + TEN-0136 @@ -28529,8 +28652,11 @@ CON-0137 2023-07-24+02:00 - Benzylpencillinum + Benzylpencillinum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-137 + TEN-0137 @@ -28538,8 +28664,11 @@ CON-0138 2023-07-24+02:00 - Amoxicillinum / Acidum clavulanicum + Amoxicillinum / Acidum clavulanicum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-138 + TEN-0138 @@ -28547,8 +28676,11 @@ CON-0139 2023-07-24+02:00 - Piperacillinum / Tazobactamum + Piperacillinum / Tazobactamum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-139 + TEN-0139 @@ -28556,8 +28688,11 @@ CON-0140 2023-07-24+02:00 - Cefazolinum + Cefazolinum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-140 + TEN-0140 @@ -28565,8 +28700,11 @@ CON-0141 2023-07-24+02:00 - Ceftriaxonum + Ceftriaxonum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-141 + TEN-0141 @@ -28574,17 +28712,23 @@ CON-0142 2023-07-24+02:00 - Imipenemum / Cilastatinum + Imipenemum / Cilastatinum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-142 + TEN-0142 CON-0143 - 2023-10-11+02:00 - Sulfamethoxazolum, Trimethoprimum + 2023-07-24+02:00 + Sulfamethoxazolum, Trimethoprimum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-143 + TEN-0143 @@ -28592,8 +28736,11 @@ CON-0144 2023-07-24+02:00 - Erythromycinum + Erythromycinum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-144 + TEN-0144 @@ -28601,8 +28748,11 @@ CON-0145 2023-07-24+02:00 - Erythromycinum + Erythromycinum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-145 + TEN-0145 @@ -28610,8 +28760,11 @@ CON-0146 2023-07-24+02:00 - Erythromycinum + Erythromycinum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-146 + TEN-0146 @@ -28619,8 +28772,11 @@ CON-0147 2023-07-24+02:00 - Gentamicinum + Gentamicinum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-147 + TEN-0147 @@ -28628,8 +28784,11 @@ CON-0148 2023-07-24+02:00 - Ciprofloxacinum + Ciprofloxacinum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-148 + TEN-0148 @@ -28637,8 +28796,11 @@ CON-0149 2023-07-24+02:00 - Ciprofloxacinum + Ciprofloxacinum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-149 + TEN-0149 @@ -28646,8 +28808,11 @@ CON-0150 2023-07-24+02:00 - Ciprofloxacinum + Ciprofloxacinum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-150 + TEN-0150 @@ -28655,8 +28820,11 @@ CON-0151 2023-07-24+02:00 - Metronidazolum + Metronidazolum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-151 + TEN-0151 @@ -28664,8 +28832,11 @@ CON-0152 2023-07-24+02:00 - Fluconazolum + Fluconazolum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-152 + TEN-0152 @@ -28673,8 +28844,11 @@ CON-0153 2023-07-24+02:00 - Vaccinum encephalitidis ixodibus advectae inactivatum + Vaccinum encephalitidis ixodibus advectae inactivatum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-153 + TEN-0153 @@ -28682,8 +28856,11 @@ CON-0154 2023-07-24+02:00 - Vaccinum encephalitidis ixodibus advectae inactivatum + Vaccinum encephalitidis ixodibus advectae inactivatum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-154 + TEN-0154 @@ -28691,8 +28868,11 @@ CON-0155 2023-07-24+02:00 - Vaccinum influenzae inactivatum ex corticis antigeniis praeparatum + Vaccinum influenzae inactivatum ex corticis antigeniis praeparatum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-155 + TEN-0155 @@ -28700,8 +28880,11 @@ CON-0156 2023-07-24+02:00 - Viri hepatitidis A inactivatum + Viri hepatitidis A inactivatum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-156 + TEN-0156 @@ -28709,8 +28892,11 @@ CON-0157 2023-07-24+02:00 - Vaccinum hepatitidis A inactivatum adsorbatum + Vaccinum hepatitidis A inactivatum adsorbatum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-157 + TEN-0157 @@ -28718,8 +28904,11 @@ CON-0158 2023-07-24+02:00 - Vaccinum hepatitidis B (ADNr) + Vaccinum hepatitidis B (ADNr) https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-158 + TEN-0158 @@ -28727,8 +28916,11 @@ CON-0159 2023-07-24+02:00 - Vaccinum papillomaviri humani 9-valent, (recombinantum, adsorbatum) + Vaccinum papillomaviri humani 9-valent, (recombinantum, adsorbatum) https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-159 + TEN-0159 @@ -28736,8 +28928,11 @@ CON-0160 2023-07-24+02:00 - Vaccinum diphtheriae, tetani, pertussis sine cellulis ex elementis praeparatum et poliomyelitidis inactivatum adsorbatum + Vaccinum diphtheriae, tetani, pertussis sine cellulis ex elementis praeparatum et poliomyelitidis inactivatum adsorbatum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-160 + TEN-0160 @@ -28745,8 +28940,11 @@ CON-0161 2023-07-24+02:00 - Vaccinum pneumococcale polysaccharidicum coniugatum adsorbatum + Vaccinum pneumococcale polysaccharidicum coniugatum adsorbatum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-161 + TEN-0161 @@ -28754,8 +28952,11 @@ CON-0162 2023-07-24+02:00 - Vaccinum hepatitidis A inactivatum et hepatitidis B (ADNr) adsorbatum + Vaccinum hepatitidis A inactivatum et hepatitidis B (ADNr) adsorbatum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-162 + TEN-0162 @@ -28763,8 +28964,11 @@ CON-0163 2023-07-24+02:00 - Viri rabiei inactivatum + Viri rabiei inactivatum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-163 + TEN-0163 @@ -28772,8 +28976,11 @@ CON-0164 2023-07-24+02:00 - Vaccinum diphtheriae et tetani adsorbatum + Vaccinum diphtheriae et tetani adsorbatum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-164 + TEN-0164 @@ -28781,8 +28988,11 @@ CON-0165 2023-07-24+02:00 - Vaccinum morbillorum, parotitidis et rubellae vivum + Vaccinum morbillorum, parotitidis et rubellae vivum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-165 + TEN-0165 @@ -28790,8 +29000,11 @@ CON-0166 2023-07-24+02:00 - Vaccinum diphtheriae, tetani, pertussis sine cellulis ex elementis praeparatum, antigeni-o(-is) minutum, adsorbatum + Vaccinum diphtheriae, tetani, pertussis sine cellulis ex elementis praeparatum, antigeni-o(-is) minutum, adsorbatum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-166 + TEN-0166 @@ -28799,8 +29012,11 @@ CON-0167 2023-07-24+02:00 - Methotrexatum + Methotrexatum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-167 + TEN-0167 @@ -28808,8 +29024,11 @@ CON-0168 2023-07-24+02:00 - Mitomycinum + Mitomycinum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-168 + TEN-0168 @@ -28817,8 +29036,11 @@ CON-0169 2023-07-24+02:00 - Doxorubicinum + Doxorubicinum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-169 + TEN-0169 @@ -28826,8 +29048,11 @@ CON-0170 2023-07-24+02:00 - Diclofenacum natrium + Diclofenacum natrium https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-170 + TEN-0170 @@ -28835,8 +29060,11 @@ CON-0171 2023-07-24+02:00 - Diclofenacum natrium + Diclofenacum natrium https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-171 + TEN-0171 @@ -28844,8 +29072,11 @@ CON-0172 2023-07-24+02:00 - Diclofenacum natrium + Diclofenacum natrium https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-172 + TEN-0172 @@ -28853,8 +29084,11 @@ CON-0173 2023-07-24+02:00 - Ketorolaci trometamolum + Ketorolaci trometamolum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-173 + TEN-0173 @@ -28862,8 +29096,11 @@ CON-0174 2023-07-24+02:00 - Ibuprofenum + Ibuprofenum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-174 + TEN-0174 @@ -28871,8 +29108,11 @@ CON-0175 2023-07-24+02:00 - Dexketoprofenum + Dexketoprofenum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-175 + TEN-0175 @@ -28880,8 +29120,11 @@ CON-0176 2023-07-24+02:00 - Dexketoprofenum + Dexketoprofenum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-176 + TEN-0176 @@ -28889,8 +29132,11 @@ CON-0177 2023-07-24+02:00 - Etoricoxibum + Etoricoxibum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-177 + TEN-0177 @@ -28898,8 +29144,11 @@ CON-0178 2023-07-24+02:00 - Suxamethonii chloridum + Suxamethonii chloridum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-178 + TEN-0178 @@ -28907,8 +29156,11 @@ CON-0179 2023-07-24+02:00 - Atracurii besilas + Atracurii besilas https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-179 + TEN-0179 @@ -28916,8 +29168,11 @@ CON-0180 2023-07-24+02:00 - Atracurii besilas + Atracurii besilas https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-180 + TEN-0180 @@ -28925,8 +29180,11 @@ CON-0181 2023-07-24+02:00 - Mivacurium + Mivacurium https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-181 + TEN-0181 @@ -28934,8 +29192,11 @@ CON-0182 2023-07-24+02:00 - Cisatracurium + Cisatracurium https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-182 + TEN-0182 @@ -28943,8 +29204,11 @@ CON-0183 2023-07-24+02:00 - Toxinum A Clostridii botulini haemagglutininum multiplex + Toxinum A Clostridii botulini haemagglutininum multiplex https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-183 + TEN-0183 @@ -28952,8 +29216,11 @@ CON-0184 2023-07-24+02:00 - Tizanidinum + Tizanidinum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-184 + TEN-0184 @@ -28961,8 +29228,11 @@ CON-0185 2023-07-24+02:00 - Tolperisonum + Tolperisonum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-185 + TEN-0185 @@ -28970,8 +29240,11 @@ CON-0186 2023-07-24+02:00 - Sevofluranum + Sevofluranum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-186 + TEN-0186 @@ -28979,8 +29252,11 @@ CON-0187 2023-07-24+02:00 - Thiopentalum natricum + Thiopentalum natricum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-187 + TEN-0187 @@ -28988,8 +29264,11 @@ CON-0188 2023-07-24+02:00 - Etomidatum + Etomidatum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-188 + TEN-0188 @@ -28997,8 +29276,11 @@ CON-0189 2023-07-24+02:00 - Propofolum + Propofolum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-189 + TEN-0189 @@ -29006,8 +29288,11 @@ CON-0190 2023-07-24+02:00 - Propofolum + Propofolum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-190 + TEN-0190 @@ -29015,8 +29300,11 @@ CON-0191 2023-07-24+02:00 - Bupivacaini hydrochloridum + Bupivacaini hydrochloridum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-191 + TEN-0191 @@ -29024,8 +29312,11 @@ CON-0192 2023-07-24+02:00 - Bupivacaini hydrochloridum + Bupivacaini hydrochloridum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-192 + TEN-0192 @@ -29033,8 +29324,11 @@ CON-0193 2023-07-24+02:00 - Bupivacaini hydrochloridum + Bupivacaini hydrochloridum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-193 + TEN-0193 @@ -29042,8 +29336,11 @@ CON-0194 2023-07-24+02:00 - Ropivacaini hydrochloridum + Ropivacaini hydrochloridum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-194 + TEN-0194 @@ -29051,8 +29348,11 @@ CON-0195 2023-07-24+02:00 - Lidocaini hydrochloridum + Lidocaini hydrochloridum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-195 + TEN-0195 @@ -29060,8 +29360,11 @@ CON-0196 2023-07-24+02:00 - Lidocaini hydrochloridum + Lidocaini hydrochloridum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-196 + TEN-0196 @@ -29069,8 +29372,11 @@ CON-0197 2023-07-24+02:00 - Lidocaini hydrochloridum, Chlorhexidinum + Lidocaini hydrochloridum, Chlorhexidinum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-197 + TEN-0197 @@ -29078,8 +29384,11 @@ CON-0198 2023-07-24+02:00 - Prilocainum, Lidocainum + Prilocainum, Lidocainum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-198 + TEN-0198 @@ -29087,8 +29396,11 @@ CON-0199 2023-07-24+02:00 - Morphini hydrochloridum + Morphini hydrochloridum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-199 + TEN-0199 @@ -29096,8 +29408,11 @@ CON-0200 2023-07-24+02:00 - Fentanylum + Fentanylum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-200 + TEN-0200 @@ -29105,8 +29420,11 @@ CON-0201 2023-07-24+02:00 - Trimeperidini hydrochloridum + Trimeperidini hydrochloridum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-201 + TEN-0201 @@ -29114,8 +29432,11 @@ CON-0202 2023-07-24+02:00 - Tramadoli hydrochloridum + Tramadoli hydrochloridum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-202 + TEN-0202 @@ -29123,8 +29444,11 @@ CON-0203 2023-07-24+02:00 - Tramadoli hydrochloridum + Tramadoli hydrochloridum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-203 + TEN-0203 @@ -29132,8 +29456,11 @@ CON-0204 2023-07-24+02:00 - Tramadoli hydrochloridum, Dexketoprofenum + Tramadoli hydrochloridum, Dexketoprofenum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-204 + TEN-0204 @@ -29141,8 +29468,11 @@ CON-0205 2023-07-24+02:00 - Paracetamolum, Codeini phosphas hemihydricus + Paracetamolum, Codeini phosphas hemihydricus https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-205 + TEN-0205 @@ -29150,8 +29480,11 @@ CON-0206 2023-07-24+02:00 - Sumatriptanum + Sumatriptanum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-206 + TEN-0206 @@ -29159,8 +29492,11 @@ CON-0207 2023-07-24+02:00 - Metamizolum natricum + Metamizolum natricum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-207 + TEN-0207 @@ -29168,8 +29504,11 @@ CON-0208 2023-07-24+02:00 - Metamizolum natricum + Metamizolum natricum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-208 + TEN-0208 @@ -29177,8 +29516,11 @@ CON-0209 2023-07-24+02:00 - Acidum acetylsalicylicum + Acidum acetylsalicylicum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-209 + TEN-0209 @@ -29186,8 +29528,11 @@ CON-0210 2023-07-24+02:00 - Paracetamolum + Paracetamolum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-210 + TEN-0210 @@ -29195,8 +29540,11 @@ CON-0211 2023-07-24+02:00 - Paracetamolum + Paracetamolum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-211 + TEN-0211 @@ -29204,8 +29552,11 @@ CON-0212 2023-07-24+02:00 - Clonazepamum + Clonazepamum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-212 + TEN-0212 @@ -29213,8 +29564,11 @@ CON-0213 2023-07-24+02:00 - Gabapentinum + Gabapentinum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-213 + TEN-0213 @@ -29222,8 +29576,11 @@ CON-0214 2023-07-24+02:00 - Pregabalinum + Pregabalinum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-214 + TEN-0214 @@ -29231,8 +29588,11 @@ CON-0215 2023-07-24+02:00 - Carbamazepinum + Carbamazepinum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-215 + TEN-0215 @@ -29240,8 +29600,11 @@ CON-0216 2023-07-24+02:00 - Trihexyphenidylum + Trihexyphenidylum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-216 + TEN-0216 @@ -29249,8 +29612,11 @@ CON-0217 2023-07-24+02:00 - Levodopum, Benserazidum + Levodopum, Benserazidum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-217 + TEN-0217 @@ -29258,8 +29624,11 @@ CON-0218 2023-07-24+02:00 - Haloperidolum + Haloperidolum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-218 + TEN-0218 @@ -29267,8 +29636,11 @@ CON-0219 2023-07-24+02:00 - Haloperidolum + Haloperidolum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-219 + TEN-0219 @@ -29276,8 +29648,11 @@ CON-0220 2023-07-24+02:00 - Melperonum + Melperonum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-220 + TEN-0220 @@ -29285,8 +29660,11 @@ CON-0221 2023-07-24+02:00 - Diazepamum + Diazepamum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-221 + TEN-0221 @@ -29294,8 +29672,11 @@ CON-0222 2023-07-24+02:00 - Diazepamum (iepakojumā tika pa N10 ampulām) + Diazepamum (iepakojumā tika pa N10 ampulām) https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-222 + TEN-0222 @@ -29303,8 +29684,11 @@ CON-0223 2023-07-24+02:00 - Bromazepamum + Bromazepamum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-223 + TEN-0223 @@ -29312,8 +29696,11 @@ CON-0224 2023-07-24+02:00 - Quetiapinum + Quetiapinum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-224 + TEN-0224 @@ -29321,8 +29708,11 @@ CON-0225 2023-07-24+02:00 - Midazolamum + Midazolamum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-225 + TEN-0225 @@ -29330,8 +29720,11 @@ CON-0226 2023-07-24+02:00 - Midazolamum + Midazolamum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-226 + TEN-0226 @@ -29339,8 +29732,11 @@ CON-0227 2023-07-24+02:00 - Chlorprotixenum + Chlorprotixenum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-227 + TEN-0227 @@ -29348,8 +29744,11 @@ CON-0228 2023-07-24+02:00 - Amitriptylinum + Amitriptylinum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-228 + TEN-0228 @@ -29357,8 +29756,11 @@ CON-0229 2023-07-24+02:00 - Piracetamum + Piracetamum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-229 + TEN-0229 @@ -29366,8 +29768,11 @@ CON-0230 2023-07-24+02:00 - Ipidacrinum + Ipidacrinum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-230 + TEN-0230 @@ -29375,8 +29780,11 @@ CON-0231 2023-07-24+02:00 - Neostigmini methylsulfas + Neostigmini methylsulfas https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-231 + TEN-0231 @@ -29384,8 +29792,11 @@ CON-0232 2023-07-24+02:00 - Metronidazolum + Metronidazolum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-232 + TEN-0232 @@ -29393,8 +29804,11 @@ CON-0233 2023-07-24+02:00 - Permethrinum + Permethrinum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-233 + TEN-0233 @@ -29402,8 +29816,11 @@ CON-0234 2023-07-24+02:00 - Benzylii benzoas + Benzylii benzoas https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-234 + TEN-0234 @@ -29411,8 +29828,11 @@ CON-0235 2023-07-24+02:00 - Xylomethazolinum + Xylomethazolinum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-235 + TEN-0235 @@ -29420,8 +29840,11 @@ CON-0236 2023-07-24+02:00 - Xylomethazolinum + Xylomethazolinum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-236 + TEN-0236 @@ -29429,8 +29852,11 @@ CON-0237 2023-07-24+02:00 - Salbutamoli sulfas + Salbutamoli sulfas https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-237 + TEN-0237 @@ -29438,8 +29864,11 @@ CON-0238 2023-07-24+02:00 - Salbutamolum + Salbutamolum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-238 + TEN-0238 @@ -29447,8 +29876,11 @@ CON-0239 2023-07-24+02:00 - Ipratropii bromidum, Fenoteroli hydrobromidum + Ipratropii bromidum, Fenoteroli hydrobromidum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-239 + TEN-0239 @@ -29456,8 +29888,11 @@ CON-0240 2023-07-24+02:00 - Aminophyllinum + Aminophyllinum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-240 + TEN-0240 @@ -29465,8 +29900,11 @@ CON-0241 2023-07-24+02:00 - Clemastinum + Clemastinum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-241 + TEN-0241 @@ -29474,8 +29912,11 @@ CON-0242 2023-07-24+02:00 - Chloropyraminum + Chloropyraminum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-242 + TEN-0242 @@ -29483,8 +29924,11 @@ CON-0243 2023-07-24+02:00 - Chloropyraminum + Chloropyraminum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-243 + TEN-0243 @@ -29492,8 +29936,11 @@ CON-0244 2023-07-24+02:00 - Quifenadini hydrochloridum + Quifenadini hydrochloridum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-244 + TEN-0244 @@ -29501,8 +29948,11 @@ CON-0245 2023-07-24+02:00 - Solutio Ammoniae concentrata + Solutio Ammoniae concentrata https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-245 + TEN-0245 @@ -29510,8 +29960,11 @@ CON-0246 2023-07-24+02:00 - Tobramycinum + Tobramycinum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-246 + TEN-0246 @@ -29519,8 +29972,11 @@ CON-0247 2023-07-24+02:00 - Tobramycinum + Tobramycinum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-247 + TEN-0247 @@ -29528,8 +29984,11 @@ CON-0248 2023-07-24+02:00 - Acetazolamidum + Acetazolamidum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-248 + TEN-0248 @@ -29537,8 +29996,11 @@ CON-0249 2023-07-24+02:00 - Moxifloxacinum + Moxifloxacinum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-249 + TEN-0249 @@ -29546,8 +30008,11 @@ CON-0250 2023-07-24+02:00 - Diclofenacum Natrium + Diclofenacum Natrium https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-250 + TEN-0250 @@ -29555,8 +30020,11 @@ CON-0251 2023-07-24+02:00 - Tobramycinum, Dexamethasonum + Tobramycinum, Dexamethasonum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-251 + TEN-0251 @@ -29564,8 +30032,11 @@ CON-0252 2023-07-24+02:00 - Tobramycinum, Dexamethasonum + Tobramycinum, Dexamethasonum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-252 + TEN-0252 @@ -29573,8 +30044,11 @@ CON-0253 2023-07-24+02:00 - Dexamethasonum, Chloramphenicolum + Dexamethasonum, Chloramphenicolum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-253 + TEN-0253 @@ -29582,8 +30056,11 @@ CON-0254 2023-07-24+02:00 - Dexamethasonum, Chloramphenicolum + Dexamethasonum, Chloramphenicolum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-254 + TEN-0254 @@ -29591,8 +30068,11 @@ CON-0255 2023-07-24+02:00 - Timololum + Timololum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-255 + TEN-0255 @@ -29600,8 +30080,11 @@ CON-0256 2023-07-24+02:00 - Timololum, Dorzolamidum + Timololum, Dorzolamidum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-256 + TEN-0256 @@ -29609,8 +30092,11 @@ CON-0257 2023-07-24+02:00 - Cyclopentolati hydrochloridum + Cyclopentolati hydrochloridum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-257 + TEN-0257 @@ -29618,8 +30104,11 @@ CON-0258 2023-07-24+02:00 - Tropicamidum + Tropicamidum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-258 + TEN-0258 @@ -29627,8 +30116,11 @@ CON-0259 2023-07-24+02:00 - Phenylephrinum + Phenylephrinum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-259 + TEN-0259 @@ -29636,8 +30128,11 @@ CON-0260 2023-07-24+02:00 - Proxymetacaini hydrochloridum + Proxymetacaini hydrochloridum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-260 + TEN-0260 @@ -29645,8 +30140,11 @@ CON-0261 2023-07-24+02:00 - Dexpanthenolum + Dexpanthenolum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-261 + TEN-0261 @@ -29654,8 +30152,11 @@ CON-0262 2023-07-24+02:00 - Carbomerum + Carbomerum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-262 + TEN-0262 @@ -29663,8 +30164,11 @@ CON-0263 2023-07-24+02:00 - Naloxoni hydrochloridum + Naloxoni hydrochloridum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-263 + TEN-0263 @@ -29672,8 +30176,11 @@ CON-0264 2023-07-24+02:00 - Protamini sulfas + Protamini sulfas https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-264 + TEN-0264 @@ -29681,8 +30188,11 @@ CON-0265 2023-07-24+02:00 - Natrii thiosulfas + Natrii thiosulfas https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-265 + TEN-0265 @@ -29690,8 +30200,11 @@ CON-0266 2023-07-24+02:00 - Bleu patente + Bleu patente https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-266 + TEN-0266 @@ -29699,8 +30212,11 @@ CON-0267 2023-07-24+02:00 - Haemoderivatum deproteinatum sanguinis bovi + Haemoderivatum deproteinatum sanguinis bovi https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-267 + TEN-0267 @@ -29708,8 +30224,11 @@ CON-0268 2023-07-24+02:00 - Aqua destillata + Aqua destillata https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-268 + TEN-0268 @@ -29717,8 +30236,11 @@ CON-0269 2023-07-24+02:00 - Aqua destillata + Aqua destillata https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-269 + TEN-0269 @@ -29726,8 +30248,11 @@ CON-0270 2023-07-24+02:00 - Aqua destillata + Aqua destillata https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-270 + TEN-0270 @@ -29735,8 +30260,11 @@ CON-0271 2023-07-24+02:00 - Irigācijas šķīdums uroloģ./ginekoloģ.operācijām (ecobag) + Irigācijas šķīdums uroloģ./ginekoloģ.operācijām (ecobag) https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-271 + TEN-0271 @@ -29744,8 +30272,11 @@ CON-0272 2023-07-24+02:00 - Irigācijas šķīdums uroloģ./ginekoloģ.operācijām (ecobag) + Irigācijas šķīdums uroloģ./ginekoloģ.operācijām (ecobag) https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-272 + TEN-0272 @@ -29753,8 +30284,11 @@ CON-0273 2023-07-24+02:00 - Iopamidolum + Iopamidolum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-273 + TEN-0273 @@ -29762,8 +30296,11 @@ CON-0274 2023-07-24+02:00 - Gadobutrolum + Gadobutrolum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-274 + TEN-0274 @@ -29771,8 +30308,11 @@ CON-0275 2023-07-24+02:00 - Gadobutrolum + Gadobutrolum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-275 + TEN-0275 @@ -29780,8 +30320,11 @@ CON-0276 2023-07-24+02:00 - Gadobutrolum + Gadobutrolum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-276 + TEN-0276 @@ -29789,8 +30332,11 @@ CON-0277 2023-07-24+02:00 - Iopromidum + Iopromidum https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-277 + TEN-0277 @@ -29798,8 +30344,11 @@ CON-0278 2023-07-24+02:00 - Dinatrii gadoxetas + Dinatrii gadoxetas https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-278 + TEN-0278 @@ -29807,8 +30356,11 @@ CON-0279 2023-07-24+02:00 - Granulēts aktivēts sorbents (sorbex) + Granulēts aktivēts sorbents (sorbex) https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-279 + TEN-0279 @@ -29816,8 +30368,11 @@ CON-0280 2023-07-24+02:00 - Spiritus aethylicus 960 + Spiritus aethylicus 960 https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-280 + TEN-0280 @@ -29825,8 +30380,11 @@ CON-0281 2023-07-24+02:00 - Tinctura Leonuri + Tinctura Leonuri https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-281 + TEN-0281 @@ -29834,8 +30392,11 @@ CON-0282 2023-07-24+02:00 - TincturaValerianae + TincturaValerianae https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-282 + TEN-0282 @@ -29843,8 +30404,11 @@ CON-0283 2023-07-24+02:00 - Pretaizsvīšanas, pretaprasojuma līdzeklis visu veidu optikas izstrādājumiem, (Ultrastop) + Pretaizsvīšanas, pretaprasojuma līdzeklis visu veidu optikas izstrādājumiem, (Ultrastop) https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-283 + TEN-0283 @@ -29852,8 +30416,11 @@ 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. + 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 + + CON-REF-284 + TEN-0284 @@ -29861,8 +30428,11 @@ CON-0285 2023-07-24+02:00 - Enterālās barošanas līdzekļi + Enterālās barošanas līdzekļi https://www.eis.gov.lv/EKEIS/Supplier/Procurement/96354 + + CON-REF-285 + TEN-0285 @@ -31579,7 +32149,7 @@ - 29 + 29 @@ -31589,13 +32159,13 @@ ORG-0001 - SIA “Rīgas 1.slimnīca” + SIA “Rīgas 1.slimnīca” Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -31613,17 +32183,18 @@ false + micro ORG-0003 - SIA “Magnum Medical” + SIA “Magnum Medical” Ulbrokas iela 23 Rīga LV-1021 - LV006 + LV00A LVA @@ -31640,17 +32211,18 @@ false + micro ORG-0004 - SIA "Oribalt Rīga" + SIA "Oribalt Rīga" Dzirnieku iela 26 Mārupe LV-2167 - LV006 + LV00A LVA @@ -31667,17 +32239,18 @@ false + micro ORG-0005 - SIA “Oribalt Rīga” + SIA “Oribalt Rīga” Dzirnieku iela 26 Mārupe LV-2167 - LV006 + LV00A LVA @@ -31694,17 +32267,18 @@ false + micro ORG-0006 - SIA “Magnum Medical” + SIA “Magnum Medical” Ulbrokas iela 23 Rīga LV-1021 - LV006 + LV00A LVA @@ -31721,17 +32295,18 @@ false + micro ORG-0007 - SIA “Magnum Medical” + SIA “Magnum Medical” Ulbrokas iela 23 Rīga LV-1021 - LV006 + LV00A LVA @@ -31748,17 +32323,18 @@ false + micro ORG-0008 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -31775,17 +32351,18 @@ false + micro ORG-0009 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -31802,17 +32379,18 @@ false + micro ORG-0010 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -31829,17 +32407,18 @@ false + micro ORG-0011 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -31856,17 +32435,18 @@ false + micro ORG-0012 - SIA “Aniss” + SIA “Aniss” Ulbrokas iela 19A Rīga LV-1021 - LV006 + LV00A LVA @@ -31883,17 +32463,18 @@ false + micro ORG-0013 - SIA “Elpis” + SIA “Elpis” Rāmuļu iela 15 Rīga LV-1005 - LV006 + LV00A LVA @@ -31910,17 +32491,18 @@ false + micro ORG-0014 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -31937,17 +32519,18 @@ false + micro ORG-0015 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -31964,17 +32547,18 @@ false + micro ORG-0016 - SIA “Magnum Medical” + SIA “Magnum Medical” Ulbrokas iela 23 Rīga LV-1021 - LV006 + LV00A LVA @@ -31991,17 +32575,18 @@ false + micro ORG-0017 - SIA “Magnum Medical” + SIA “Magnum Medical” Ulbrokas iela 23 Rīga LV-1021 - LV006 + LV00A LVA @@ -32018,17 +32603,18 @@ false + micro ORG-0018 - SIA “Magnum Medical” + SIA “Magnum Medical” Ulbrokas iela 23 Rīga LV-1021 - LV006 + LV00A LVA @@ -32045,17 +32631,18 @@ false + micro ORG-0019 - SIA “Oribalt Rīga” + SIA “Oribalt Rīga” Dzirnieku iela 26 Mārupe LV-2167 - LV006 + LV00A LVA @@ -32072,17 +32659,18 @@ false + micro ORG-0020 - SIA “Oribalt Rīga” + SIA “Oribalt Rīga” Dzirnieku iela 26 Mārupe LV-2167 - LV006 + LV00A LVA @@ -32099,17 +32687,18 @@ false + micro ORG-0021 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -32126,17 +32715,18 @@ false + micro ORG-0022 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -32153,17 +32743,18 @@ false + micro ORG-0023 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -32180,17 +32771,18 @@ false + micro ORG-0024 - SIA „Unifarma” + SIA „Unifarma” Vangažu iela 23 Rīga LV-1024 - LV006 + LV00A LVA @@ -32207,17 +32799,18 @@ false + micro ORG-0025 - SIA „Unifarma” + SIA „Unifarma” Vangažu iela 23 Rīga LV-1024 - LV006 + LV00A LVA @@ -32234,17 +32827,18 @@ false + micro ORG-0026 - SIA “Magnum Medical” + SIA “Magnum Medical” Ulbrokas iela 23 Rīga LV-1021 - LV006 + LV00A LVA @@ -32261,17 +32855,18 @@ false + micro ORG-0027 - SIA “Magnum Medical” + SIA “Magnum Medical” Ulbrokas iela 23 Rīga LV-1021 - LV006 + LV00A LVA @@ -32288,17 +32883,18 @@ false + micro ORG-0028 - SIA “Magnum Medical” + SIA “Magnum Medical” Ulbrokas iela 23 Rīga LV-1021 - LV006 + LV00A LVA @@ -32315,17 +32911,18 @@ false + micro ORG-0029 - SIA “Magnum Medical” + SIA “Magnum Medical” Ulbrokas iela 23 Rīga LV-1021 - LV006 + LV00A LVA @@ -32342,17 +32939,18 @@ false + micro ORG-0030 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -32369,17 +32967,18 @@ false + micro ORG-0031 - SIA “Magnum Medical” + SIA “Magnum Medical” Ulbrokas iela 23 Rīga LV-1021 - LV006 + LV00A LVA @@ -32396,17 +32995,18 @@ false + micro ORG-0032 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -32423,17 +33023,18 @@ false + micro ORG-0033 - SIA „Unifarma” + SIA „Unifarma” Vangažu iela 23 Rīga LV-1024 - LV006 + LV00A LVA @@ -32450,17 +33051,18 @@ false + micro ORG-0034 - SIA „Unifarma” + SIA „Unifarma” Vangažu iela 23 Rīga LV-1024 - LV006 + LV00A LVA @@ -32477,17 +33079,18 @@ false + micro ORG-0035 - SIA „Unifarma” + SIA „Unifarma” Vangažu iela 23 Rīga LV-1024 - LV006 + LV00A LVA @@ -32504,17 +33107,18 @@ false + micro ORG-0036 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -32531,17 +33135,18 @@ false + micro ORG-0037 - SIA “B.Braun Medical” + SIA “B.Braun Medical” Ūdeļu iela 16 Rīga LV-1064 - LV006 + LV00A LVA @@ -32558,17 +33163,18 @@ false + micro ORG-0038 - SIA “B.Braun Medical” + SIA “B.Braun Medical” Ūdeļu iela 16 Rīga LV-1064 - LV006 + LV00A LVA @@ -32585,17 +33191,18 @@ false + micro ORG-0039 - SIA “B.Braun Medical” + SIA “B.Braun Medical” Ūdeļu iela 16 Rīga LV-1064 - LV006 + LV00A LVA @@ -32612,17 +33219,18 @@ false + micro ORG-0040 - SIA “B.Braun Medical” + SIA “B.Braun Medical” Ūdeļu iela 16 Rīga LV-1064 - LV006 + LV00A LVA @@ -32639,17 +33247,18 @@ false + micro ORG-0041 - SIA “B.Braun Medical” + SIA “B.Braun Medical” Ūdeļu iela 16 Rīga LV-1064 - LV006 + LV00A LVA @@ -32666,17 +33275,18 @@ false + micro ORG-0042 - SIA “B.Braun Medical” + SIA “B.Braun Medical” Ūdeļu iela 16 Rīga LV-1064 - LV006 + LV00A LVA @@ -32693,17 +33303,18 @@ false + micro ORG-0043 - SIA “B.Braun Medical” + SIA “B.Braun Medical” Ūdeļu iela 16 Rīga LV-1064 - LV006 + LV00A LVA @@ -32720,17 +33331,18 @@ false + micro ORG-0044 - SIA “B.Braun Medical” + SIA “B.Braun Medical” Ūdeļu iela 16 Rīga LV-1064 - LV006 + LV00A LVA @@ -32747,17 +33359,18 @@ false + micro ORG-0045 - SIA “B.Braun Medical” + SIA “B.Braun Medical” Ūdeļu iela 16 Rīga LV-1064 - LV006 + LV00A LVA @@ -32774,17 +33387,18 @@ false + micro ORG-0046 - SIA “B.Braun Medical” + SIA “B.Braun Medical” Ūdeļu iela 16 Rīga LV-1064 - LV006 + LV00A LVA @@ -32801,17 +33415,18 @@ false + micro ORG-0047 - SIA “B.Braun Medical” + SIA “B.Braun Medical” Ūdeļu iela 16 Rīga LV-1064 - LV006 + LV00A LVA @@ -32828,17 +33443,18 @@ false + micro ORG-0048 - SIA “B.Braun Medical” + SIA “B.Braun Medical” Ūdeļu iela 16 Rīga LV-1064 - LV006 + LV00A LVA @@ -32855,17 +33471,18 @@ false + micro ORG-0049 - SIA “B.Braun Medical” + SIA “B.Braun Medical” Ūdeļu iela 16 Rīga LV-1064 - LV006 + LV00A LVA @@ -32882,17 +33499,18 @@ false + micro ORG-0050 - SIA “B.Braun Medical” + SIA “B.Braun Medical” Ūdeļu iela 16 Rīga LV-1064 - LV006 + LV00A LVA @@ -32909,17 +33527,18 @@ false + micro ORG-0051 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -32936,17 +33555,18 @@ false + micro ORG-0052 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -32963,17 +33583,18 @@ false + micro ORG-0053 - SIA “B.Braun Medical” + SIA “B.Braun Medical” Ūdeļu iela 16 Rīga LV-1064 - LV006 + LV00A LVA @@ -32990,17 +33611,18 @@ false + micro ORG-0054 - SIA “B.Braun Medical” + SIA “B.Braun Medical” Ūdeļu iela 16 Rīga LV-1064 - LV006 + LV00A LVA @@ -33017,17 +33639,18 @@ false + micro ORG-0055 - SIA “B.Braun Medical” + SIA “B.Braun Medical” Ūdeļu iela 16 Rīga LV-1064 - LV006 + LV00A LVA @@ -33044,17 +33667,18 @@ false + micro ORG-0056 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -33071,17 +33695,18 @@ false + micro ORG-0057 - SIA “B.Braun Medical” + SIA “B.Braun Medical” Ūdeļu iela 16 Rīga LV-1064 - LV006 + LV00A LVA @@ -33098,17 +33723,18 @@ false + micro ORG-0058 - SIA “B.Braun Medical” + SIA “B.Braun Medical” Ūdeļu iela 16 Rīga LV-1064 - LV006 + LV00A LVA @@ -33125,17 +33751,18 @@ false + micro ORG-0059 - SIA “B.Braun Medical” + SIA “B.Braun Medical” Ūdeļu iela 16 Rīga LV-1064 - LV006 + LV00A LVA @@ -33152,17 +33779,18 @@ false + micro ORG-0060 - SIA “B.Braun Medical” + SIA “B.Braun Medical” Ūdeļu iela 16 Rīga LV-1064 - LV006 + LV00A LVA @@ -33179,17 +33807,18 @@ false + micro ORG-0061 - SIA “B.Braun Medical” + SIA “B.Braun Medical” Ūdeļu iela 16 Rīga LV-1064 - LV006 + LV00A LVA @@ -33206,17 +33835,18 @@ false + micro ORG-0062 - SIA “B.Braun Medical” + SIA “B.Braun Medical” Ūdeļu iela 16 Rīga LV-1064 - LV006 + LV00A LVA @@ -33233,17 +33863,18 @@ false + micro ORG-0063 - SIA “B.Braun Medical” + SIA “B.Braun Medical” Ūdeļu iela 16 Rīga LV-1064 - LV006 + LV00A LVA @@ -33260,17 +33891,18 @@ false + micro ORG-0064 - SIA “B.Braun Medical” + SIA “B.Braun Medical” Ūdeļu iela 16 Rīga LV-1064 - LV006 + LV00A LVA @@ -33287,17 +33919,18 @@ false + micro ORG-0065 - SIA “B.Braun Medical” + SIA “B.Braun Medical” Ūdeļu iela 16 Rīga LV-1064 - LV006 + LV00A LVA @@ -33314,17 +33947,18 @@ false + micro ORG-0066 - SIA “B.Braun Medical” + SIA “B.Braun Medical” Ūdeļu iela 16 Rīga LV-1064 - LV006 + LV00A LVA @@ -33341,17 +33975,18 @@ false + micro ORG-0067 - SIA “B.Braun Medical” + SIA “B.Braun Medical” Ūdeļu iela 16 Rīga LV-1064 - LV006 + LV00A LVA @@ -33368,17 +34003,18 @@ false + micro ORG-0068 - SIA “B.Braun Medical” + SIA “B.Braun Medical” Ūdeļu iela 16 Rīga LV-1064 - LV006 + LV00A LVA @@ -33395,17 +34031,18 @@ false + micro ORG-0069 - SIA “B.Braun Medical” + SIA “B.Braun Medical” Ūdeļu iela 16 Rīga LV-1064 - LV006 + LV00A LVA @@ -33422,17 +34059,18 @@ false + micro ORG-0070 - SIA “B.Braun Medical” + SIA “B.Braun Medical” Ūdeļu iela 16 Rīga LV-1064 - LV006 + LV00A LVA @@ -33449,17 +34087,18 @@ false + micro ORG-0071 - SIA “B.Braun Medical” + SIA “B.Braun Medical” Ūdeļu iela 16 Rīga LV-1064 - LV006 + LV00A LVA @@ -33476,17 +34115,18 @@ false + micro ORG-0072 - SIA “B.Braun Medical” + SIA “B.Braun Medical” Ūdeļu iela 16 Rīga LV-1064 - LV006 + LV00A LVA @@ -33503,17 +34143,18 @@ false + micro ORG-0073 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -33530,17 +34171,18 @@ false + micro ORG-0074 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -33557,17 +34199,18 @@ false + micro ORG-0075 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -33584,17 +34227,18 @@ false + micro ORG-0076 - SIA “Unikmed Baltija” + SIA “Unikmed Baltija” Ģertrūdes iela 33/35 – 2 Rīga LV-1011 - LV006 + LV00A LVA @@ -33611,17 +34255,18 @@ false + micro ORG-0077 - SIA “Unikmed Baltija” + SIA “Unikmed Baltija” Ģertrūdes iela 33/35 – 2 Rīga LV-1011 - LV006 + LV00A LVA @@ -33638,17 +34283,18 @@ false + micro ORG-0078 - SIA “Unifarma” + SIA “Unifarma” Vangažu iela 23 Rīga LV-1024 - LV006 + LV00A LVA @@ -33665,17 +34311,18 @@ false + micro ORG-0079 - SIA “Unifarma” + SIA “Unifarma” Vangažu iela 23 Rīga LV-1024 - LV006 + LV00A LVA @@ -33692,17 +34339,18 @@ false + micro ORG-0080 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -33719,17 +34367,18 @@ false + micro ORG-0081 - SIA “Magnum Medical” + SIA “Magnum Medical” Ulbrokas iela 23 Rīga LV-1021 - LV006 + LV00A LVA @@ -33746,17 +34395,18 @@ false + micro ORG-0082 - AS “Olainfarm” + AS “Olainfarm” Rūpnīcu iela 5 Olaine LV-2114 - LV006 + LV00A LVA @@ -33773,17 +34423,18 @@ false + micro ORG-0083 - SIA “Unifarma” + SIA “Unifarma” Vangažu iela 23 Rīga LV-1024 - LV006 + LV00A LVA @@ -33800,17 +34451,18 @@ false + micro ORG-0084 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -33827,17 +34479,18 @@ false + micro ORG-0085 - SIA “Elpis” + SIA “Elpis” Rāmuļu iela 15 Rīga LV-1005 - LV006 + LV00A LVA @@ -33854,17 +34507,18 @@ false + micro ORG-0086 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -33881,17 +34535,18 @@ false + micro ORG-0087 - SIA “Unifarma” + SIA “Unifarma” Vangažu iela 23 Rīga LV-1024 - LV006 + LV00A LVA @@ -33908,17 +34563,18 @@ false + micro ORG-0088 - AS “Olainfarm” + AS “Olainfarm” Rūpnīcu iela 5 Olaine LV-2114 - LV006 + LV00A LVA @@ -33935,17 +34591,18 @@ false + micro ORG-0089 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -33962,17 +34619,18 @@ false + micro ORG-0090 - SIA “Magnum Medical” + SIA “Magnum Medical” Ulbrokas iela 23 Rīga LV-1021 - LV006 + LV00A LVA @@ -33989,17 +34647,18 @@ false + micro ORG-0091 - SIA “Magnum Medical” + SIA “Magnum Medical” Ulbrokas iela 23 Rīga LV-1021 - LV006 + LV00A LVA @@ -34016,17 +34675,18 @@ false + micro ORG-0092 - SIA “Signamed” + SIA “Signamed” Brīvības gatve 226 k-2 Rīga LV-1039 - LV006 + LV00A LVA @@ -34043,17 +34703,18 @@ false + micro ORG-0093 - SIA “Signamed” + SIA “Signamed” Brīvības gatve 226 k-2 Rīga LV-1039 - LV006 + LV00A LVA @@ -34070,17 +34731,18 @@ false + micro ORG-0094 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -34097,17 +34759,18 @@ false + micro ORG-0095 - SIA “Magnum Medical” + SIA “Magnum Medical” Ulbrokas iela 23 Rīga LV-1021 - LV006 + LV00A LVA @@ -34124,17 +34787,18 @@ false + micro ORG-0096 - AS “Olainfarm” + AS “Olainfarm” Rūpnīcu iela 5 Olaine LV-2114 - LV006 + LV00A LVA @@ -34151,17 +34815,18 @@ false + micro ORG-0097 - SIA “Unifarma” + SIA “Unifarma” Vangažu iela 23 Rīga LV-1024 - LV006 + LV00A LVA @@ -34178,17 +34843,18 @@ false + micro ORG-0098 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -34205,17 +34871,18 @@ false + micro ORG-0099 - SIA “Oribalt Rīga” + SIA “Oribalt Rīga” Dzirnieku iela 26 Mārupe LV-2167 - LV006 + LV00A LVA @@ -34232,17 +34899,18 @@ false + micro ORG-0100 - SIA “Unifarma” + SIA “Unifarma” Vangažu iela 23 Rīga LV-1024 - LV006 + LV00A LVA @@ -34259,17 +34927,18 @@ false + micro ORG-0101 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -34286,17 +34955,18 @@ false + micro ORG-0102 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -34313,17 +34983,18 @@ false + micro ORG-0103 - SIA “Elpis” + SIA “Elpis” Rāmuļu iela 15 Rīga LV-1005 - LV006 + LV00A LVA @@ -34340,17 +35011,18 @@ false + micro ORG-0104 - SIA “Magnum Medical” + SIA “Magnum Medical” Ulbrokas iela 23 Rīga LV-1021 - LV006 + LV00A LVA @@ -34367,17 +35039,18 @@ false + micro ORG-0105 - SIA “Oribalt Rīga” + SIA “Oribalt Rīga” Dzirnieku iela 26 Mārupe LV-2167 - LV006 + LV00A LVA @@ -34394,17 +35067,18 @@ false + micro ORG-0106 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -34421,17 +35095,18 @@ false + micro ORG-0107 - SIA “Magnum Medical” + SIA “Magnum Medical” Ulbrokas iela 23 Rīga LV-1021 - LV006 + LV00A LVA @@ -34448,17 +35123,18 @@ false + micro ORG-0108 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -34475,17 +35151,18 @@ false + micro ORG-0109 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -34502,17 +35179,18 @@ false + micro ORG-0110 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -34529,17 +35207,18 @@ false + micro ORG-0111 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -34556,17 +35235,18 @@ false + micro ORG-0112 - SIA “Elpis” + SIA “Elpis” Rāmuļu iela 15 Rīga LV-1005 - LV006 + LV00A LVA @@ -34583,17 +35263,18 @@ false + micro ORG-0113 - SIA “Magnum Medical” + SIA “Magnum Medical” Ulbrokas iela 23 Rīga LV-1021 - LV006 + LV00A LVA @@ -34610,17 +35291,18 @@ false + micro ORG-0114 - SIA “Magnum Medical” + SIA “Magnum Medical” Ulbrokas iela 23 Rīga LV-1021 - LV006 + LV00A LVA @@ -34637,17 +35319,18 @@ false + micro ORG-0115 - SIA “Aniss” + SIA “Aniss” Ulbrokas iela 19A Rīga LV-1021 - LV006 + LV00A LVA @@ -34664,17 +35347,18 @@ false + micro ORG-0116 - SIA “Magnum Medical” + SIA “Magnum Medical” Ulbrokas iela 23 Rīga LV-1021 - LV006 + LV00A LVA @@ -34691,17 +35375,18 @@ false + micro ORG-0117 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -34718,17 +35403,18 @@ false + micro ORG-0118 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -34745,17 +35431,18 @@ false + micro ORG-0119 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -34772,17 +35459,18 @@ false + micro ORG-0120 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -34799,17 +35487,18 @@ false + micro ORG-0121 - SIA “Magnum Medical” + SIA “Magnum Medical” Ulbrokas iela 23 Rīga LV-1021 - LV006 + LV00A LVA @@ -34826,17 +35515,18 @@ false + micro ORG-0122 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -34853,17 +35543,18 @@ false + micro ORG-0123 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -34880,17 +35571,18 @@ false + micro ORG-0124 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -34907,17 +35599,18 @@ false + micro ORG-0125 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -34934,17 +35627,18 @@ false + micro ORG-0126 - SIA “Magnum Medical” + SIA “Magnum Medical” Ulbrokas iela 23 Rīga LV-1021 - LV006 + LV00A LVA @@ -34961,17 +35655,18 @@ false + micro ORG-0127 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41 Rīga LV-1004 - LV006 + LV00A LVA @@ -34988,17 +35683,18 @@ false + micro ORG-0128 - SIA “Elpis” + SIA “Elpis” Rāmuļu iela 15 Rīga LV-1005 - LV006 + LV00A LVA @@ -35015,17 +35711,18 @@ false + micro ORG-0129 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -35042,17 +35739,18 @@ false + micro ORG-0130 - SIA “Magnum Medical” + SIA “Magnum Medical” Ulbrokas iela 23 Rīga LV-1021 - LV006 + LV00A LVA @@ -35069,17 +35767,18 @@ false + micro ORG-0131 - SIA “Magnum Medical” + SIA “Magnum Medical” Ulbrokas iela 23 Rīga LV-1021 - LV006 + LV00A LVA @@ -35096,17 +35795,18 @@ false + micro ORG-0132 - SIA “Magnum Medical” + SIA “Magnum Medical” Ulbrokas iela 23 Rīga LV-1021 - LV006 + LV00A LVA @@ -35123,17 +35823,18 @@ false + micro ORG-0133 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -35150,17 +35851,18 @@ false + micro ORG-0134 - SIA “Magnum Medical” + SIA “Magnum Medical” Ulbrokas iela 23 Rīga LV-1021 - LV006 + LV00A LVA @@ -35177,17 +35879,18 @@ false + micro ORG-0135 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -35204,17 +35907,18 @@ false + micro ORG-0136 - SIA “Magnum Medical” + SIA “Magnum Medical” Ulbrokas iela 23 Rīga LV-1021 - LV006 + LV00A LVA @@ -35231,17 +35935,18 @@ false + micro ORG-0137 - SIA “Oribalt Rīga” + SIA “Oribalt Rīga” Dzirnieku iela 26 Mārupe LV-2167 - LV006 + LV00A LVA @@ -35258,17 +35963,18 @@ false + micro ORG-0138 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -35285,17 +35991,18 @@ false + micro ORG-0139 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -35312,17 +36019,18 @@ false + micro ORG-0140 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -35339,17 +36047,18 @@ false + micro ORG-0141 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -35366,17 +36075,18 @@ false + micro ORG-0142 - SIA “Unifarma” + SIA “Unifarma” Vangažu iela 23 Rīga LV-1024 - LV006 + LV00A LVA @@ -35393,17 +36103,18 @@ false + micro ORG-0143 - SIA “Unifarma” + SIA “Unifarma” Vangažu iela 23 Rīga LV-1024 - LV006 + LV00A LVA @@ -35420,17 +36131,18 @@ false + micro ORG-0144 - SIA “Unifarma” + SIA “Unifarma” Vangažu iela 23 Rīga LV-1024 - LV006 + LV00A LVA @@ -35447,17 +36159,18 @@ false + micro ORG-0145 - SIA “Magnum Medical” + SIA “Magnum Medical” Ulbrokas iela 23 Rīga LV-1021 - LV006 + LV00A LVA @@ -35474,17 +36187,18 @@ false + micro ORG-0146 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV003 + LV00A LVA @@ -35501,17 +36215,18 @@ false + micro ORG-0147 - SIA “Signamed” + SIA “Signamed” Brīvības gatve 226 k-2 Rīga LV-1039 - LV006 + LV00A LVA @@ -35528,17 +36243,18 @@ false + micro ORG-0148 - SIA “Unifarma” + SIA “Unifarma” Vangažu iela 23 Rīga LV-1024 - LV006 + LV00A LVA @@ -35555,17 +36271,18 @@ false + micro ORG-0149 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -35582,17 +36299,18 @@ false + micro ORG-0150 - SIA “Unifarma” + SIA “Unifarma” Vangažu iela 23 Rīga LV-1024 - LV006 + LV00A LVA @@ -35609,17 +36327,18 @@ false + micro ORG-0151 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -35636,17 +36355,18 @@ false + micro ORG-0152 - SIA “Unifarma” + SIA “Unifarma” Vangažu iela 23 Rīga LV-1024 - LV006 + LV00A LVA @@ -35663,17 +36383,18 @@ false + micro ORG-0153 - SIA “Unifarma” + SIA “Unifarma” Vangažu iela 23 Rīga LV-1024 - LV006 + LV00A LVA @@ -35690,17 +36411,18 @@ false + micro ORG-0154 - SIA “Unifarma” + SIA “Unifarma” Vangažu iela 23 Rīga LV-1024 - LV006 + LV00A LVA @@ -35717,17 +36439,18 @@ false + micro ORG-0155 - SIA “Magnum Medical” + SIA “Magnum Medical” Ulbrokas iela 23 Rīga LV-1021 - LV006 + LV00A LVA @@ -35744,17 +36467,18 @@ false + micro ORG-0156 - SIA “Magnum Medical” + SIA “Magnum Medical” Ulbrokas iela 23 Rīga LV-1021 - LV006 + LV00A LVA @@ -35771,17 +36495,18 @@ false + micro ORG-0157 - SIA “Vakcīna” + SIA “Vakcīna” Lielvārdes iela 68 Rīga LV-1006 - LV006 + LV00A LVA @@ -35798,17 +36523,18 @@ false + micro ORG-0158 - SIA “Vakcīna” + SIA “Vakcīna” Lielvārdes iela 68 Rīga LV-1006 - LV006 + LV00A LVA @@ -35825,17 +36551,18 @@ false + micro ORG-0159 - SIA “Vakcīna” + SIA “Vakcīna” Lielvārdes iela 68 Rīga LV-1006 - LV006 + LV00A LVA @@ -35852,17 +36579,18 @@ false + micro ORG-0160 - SIA “Vakcīna” + SIA “Vakcīna” Lielvārdes iela 68 Rīga LV-1006 - LV006 + LV00A LVA @@ -35879,17 +36607,18 @@ false + micro ORG-0161 - SIA “Magnum Medical” + SIA “Magnum Medical” Ulbrokas iela 23 Rīga LV-1021 - LV006 + LV00A LVA @@ -35906,17 +36635,18 @@ false + micro ORG-0162 - SIA “Vakcīna” + SIA “Vakcīna” Lielvārdes iela 68 Rīga LV-1006 - LV006 + LV00A LVA @@ -35933,17 +36663,18 @@ false + micro ORG-0163 - SIA “Magnum Medical” + SIA “Magnum Medical” Ulbrokas iela 23 Rīga LV-1021 - LV006 + LV00A LVA @@ -35960,17 +36691,18 @@ false + micro ORG-0164 - SIA “Vakcīna” + SIA “Vakcīna” Lielvārdes iela 68 Rīga LV-1006 - LV006 + LV00A LVA @@ -35987,17 +36719,18 @@ false + micro ORG-0165 - SIA “Oribalt Rīga” + SIA “Oribalt Rīga” Dzirnieku iela 26 Mārupe LV-2167 - LV006 + LV00A LVA @@ -36014,17 +36747,18 @@ false + micro ORG-0166 - SIA “Oribalt Rīga” + SIA “Oribalt Rīga” Dzirnieku iela 26 Mārupe LV-2167 - LV006 + LV00A LVA @@ -36041,17 +36775,18 @@ false + micro ORG-0167 - SIA “Vakcīna” + SIA “Vakcīna” Lielvārdes iela 68 Rīga LV-1006 - LV006 + LV00A LVA @@ -36068,17 +36803,18 @@ false + micro ORG-0168 - SIA “Vakcīna” + SIA “Vakcīna” Lielvārdes iela 68 Rīga LV-1006 - LV006 + LV00A LVA @@ -36095,17 +36831,18 @@ false + micro ORG-0169 - SIA “Magnum Medical” + SIA “Magnum Medical” Ulbrokas iela 23 Rīga LV-1021 - LV006 + LV00A LVA @@ -36122,17 +36859,18 @@ false + micro ORG-0170 - SIA “Signamed” + SIA “Signamed” Brīvības gatve 226 k-2 Rīga LV-1039 - LV006 + LV00A LVA @@ -36149,17 +36887,18 @@ false + micro ORG-0171 - SIA “Magnum Medical” + SIA “Magnum Medical” Ulbrokas iela 23 Rīga LV-1021 - LV006 + LV00A LVA @@ -36176,17 +36915,18 @@ false + micro ORG-0172 - SIA “Magnum Medical” + SIA “Magnum Medical” Ulbrokas iela 23 Rīga LV-1021 - LV006 + LV00A LVA @@ -36203,17 +36943,18 @@ false + micro ORG-0173 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -36230,17 +36971,18 @@ false + micro ORG-0174 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -36257,17 +36999,18 @@ false + micro ORG-0175 - SIA “Unifarma” + SIA “Unifarma” Vangažu iela 23 Rīga LV-1024 - LV006 + LV00A LVA @@ -36284,17 +37027,18 @@ false + micro ORG-0176 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -36311,17 +37055,18 @@ false + micro ORG-0177 - SIA “Magnum Medical” + SIA “Magnum Medical” Ulbrokas iela 23 Rīga LV-1021 - LV006 + LV00A LVA @@ -36338,17 +37083,18 @@ false + micro ORG-0178 - SIA “Magnum Medical” + SIA “Magnum Medical” Ulbrokas iela 23 Rīga LV-1021 - LV006 + LV00A LVA @@ -36365,17 +37111,18 @@ false + micro ORG-0179 - SIA “Oribalt Rīga” + SIA “Oribalt Rīga” Dzirnieku iela 26 Mārupe LV-2167 - LV006 + LV00A LVA @@ -36392,17 +37139,18 @@ false + micro ORG-0180 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -36419,17 +37167,18 @@ false + micro ORG-0181 - SIA “Elpis” + SIA “Elpis” Rāmuļu iela 15 Rīga LV-1005 - LV006 + LV00A LVA @@ -36446,17 +37195,18 @@ false + micro ORG-0182 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -36473,17 +37223,18 @@ false + micro ORG-0183 - SIA “Unifarma” + SIA “Unifarma” Vangažu iela 23 Rīga LV-1024 - LV006 + LV00A LVA @@ -36500,17 +37251,18 @@ false + micro ORG-0184 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -36527,17 +37279,18 @@ false + micro ORG-0185 - SIA “Magnum Medical” + SIA “Magnum Medical” Ulbrokas iela 23 Rīga LV-1021 - LV006 + LV00A LVA @@ -36554,17 +37307,18 @@ false + micro ORG-0186 - SIA “Magnum Medical” + SIA “Magnum Medical” Ulbrokas iela 23 Rīga LV-1021 - LV006 + LV00A LVA @@ -36581,17 +37335,18 @@ false + micro ORG-0187 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -36608,17 +37363,18 @@ false + micro ORG-0188 - SIA “Magnum Medical” + SIA “Magnum Medical” Ulbrokas iela 23 Rīga LV-1021 - LV006 + LV00A LVA @@ -36635,17 +37391,18 @@ false + micro ORG-0189 - SIA “Unifarma” + SIA “Unifarma” Vangažu iela 23 Rīga LV-1024 - LV006 + LV00A LVA @@ -36662,17 +37419,18 @@ false + micro ORG-0190 - SIA “B.Braun Medical” + SIA “B.Braun Medical” Ūdeļu iela 16 Rīga LV-1064 - LV006 + LV00A LVA @@ -36689,17 +37447,18 @@ false + micro ORG-0191 - SIA “Unifarma" + SIA “Unifarma" Vangažu iela 23 Rīga LV-1024 - LV006 + LV00A LVA @@ -36716,17 +37475,18 @@ false + micro ORG-0192 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -36743,17 +37503,18 @@ false + micro ORG-0193 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -36770,17 +37531,18 @@ false + micro ORG-0194 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B, Rīga, LV-1004 Rīga Rīga - LV006 + LV00A LVA @@ -36797,17 +37559,18 @@ false + micro ORG-0195 - SIA “Unifarma” + SIA “Unifarma” Vangažu iela 23 Rīga LV-1024 - LV006 + LV00A LVA @@ -36824,17 +37587,18 @@ false + micro ORG-0196 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -36851,17 +37615,18 @@ false + micro ORG-0197 - SIA “Magnum Medical” + SIA “Magnum Medical” Ulbrokas iela 23 Rīga LV-1021 - LV006 + LV00A LVA @@ -36878,17 +37643,18 @@ false + micro ORG-0198 - SIA “A.Medical” + SIA “A.Medical” arkaļu iela 13a Rīga LV-1067 - LV006 + LV00A LVA @@ -36905,17 +37671,18 @@ false + micro ORG-0199 - SIA “Elvim” + SIA “Elvim” Kurzemes prospekts 3G Rīga LV-1067 - LV006 + LV00A LVA @@ -36932,17 +37699,18 @@ false + micro ORG-0200 - SIA “Elpis” + SIA “Elpis” Rāmuļu iela 15 Rīga LV-1005 - LV006 + LV00A LVA @@ -36959,17 +37727,18 @@ false + micro ORG-0201 - SIA “Magnum Medical” + SIA “Magnum Medical” Ulbrokas iela 23 Rīga LV-1021 - LV006 + LV00A LVA @@ -36986,17 +37755,18 @@ false + micro ORG-0202 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -37013,17 +37783,18 @@ false + micro ORG-0203 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -37040,17 +37811,18 @@ false + micro ORG-0204 - SIA “Magnum Medical” + SIA “Magnum Medical” Ulbrokas iela 23 Rīga LV-1021 - LV006 + LV00A LVA @@ -37067,17 +37839,18 @@ false + micro ORG-0205 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -37094,17 +37867,18 @@ false + micro ORG-0206 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -37121,17 +37895,18 @@ false + micro ORG-0207 - SIA “Magnum Medical” + SIA “Magnum Medical” Ulbrokas iela 23 Rīga LV-1021 - LV006 + LV00A LVA @@ -37148,17 +37923,18 @@ false + micro ORG-0208 - SIA “Magnum Medical” + SIA “Magnum Medical” Ulbrokas iela 23 Rīga LV-1021 - LV006 + LV00A LVA @@ -37175,17 +37951,18 @@ false + micro ORG-0209 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -37202,17 +37979,18 @@ false + micro ORG-0210 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -37229,17 +38007,18 @@ false + micro ORG-0211 - SIA “Magnum Medical” + SIA “Magnum Medical” Ulbrokas iela 23 Rīga LV-1021 - LV006 + LV00A LVA @@ -37256,17 +38035,18 @@ false + micro ORG-0212 - SIA “Oribalt Rīga” + SIA “Oribalt Rīga” Dzirnieku iela 26 Mārupe LV-2167 - LV003 + LV00A LVA @@ -37283,17 +38063,18 @@ false + micro ORG-0213 - SIA “B.Braun Medical” + SIA “B.Braun Medical” Ūdeļu iela 16 Rīga LV-1064 - LV003 + LV00A LVA @@ -37310,17 +38091,18 @@ false + micro ORG-0214 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV003 + LV00A LVA @@ -37337,17 +38119,18 @@ false + micro ORG-0215 - SIA “Unifarma” + SIA “Unifarma” Vangažu iela 23 Rīga LV-1024 - LV003 + LV00A LVA @@ -37364,17 +38147,18 @@ false + micro ORG-0216 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV003 + LV00A LVA @@ -37391,17 +38175,18 @@ false + micro ORG-0217 - AS “Recipe Plus” + AS “Recipe Plus” ūkusalas iela 41B Rīga LV-1004 - LV003 + LV00A LVA @@ -37418,17 +38203,18 @@ false + micro ORG-0218 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV003 + LV00A LVA @@ -37445,17 +38231,18 @@ false + micro ORG-0219 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV003 + LV00A LVA @@ -37472,17 +38259,18 @@ false + micro ORG-0220 - SIA “Unifarma” + SIA “Unifarma” Vangažu iela 23 Rīga LV-1024 - LV003 + LV00A LVA @@ -37499,17 +38287,18 @@ false + micro ORG-0221 - SIA “Elpis” + SIA “Elpis” Rāmuļu iela 15 Rīga LV-1005 - LV003 + LV00A LVA @@ -37526,17 +38315,18 @@ false + micro ORG-0222 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV003 + LV00A LVA @@ -37553,17 +38343,18 @@ false + micro ORG-0223 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV003 + LV00A LVA @@ -37580,17 +38371,18 @@ false + micro ORG-0224 - SIA “Unifarma” + SIA “Unifarma” Vangažu iela 23 Rīga LV-1024 - LV003 + LV00A LVA @@ -37607,17 +38399,18 @@ false + micro ORG-0225 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV003 + LV00A LVA @@ -37634,17 +38427,18 @@ false + micro ORG-0226 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV003 + LV00A LVA @@ -37661,17 +38455,18 @@ false + micro ORG-0227 - SIA “A.Medical” + SIA “A.Medical” Varkaļu iela 13a Rīga LV-1067 - LV003 + LV00A LVA @@ -37688,17 +38483,18 @@ false + micro ORG-0228 - SIA “Magnum Medical” + SIA “Magnum Medical” Ulbrokas iela 23 Rīga LV-1021 - LV003 + LV00A LVA @@ -37715,17 +38511,18 @@ false + micro ORG-0229 - SIA “Magnum Medical” + SIA “Magnum Medical” Ulbrokas iela 23 Rīga LV-1021 - LV003 + LV00A LVA @@ -37742,17 +38539,18 @@ false + micro ORG-0230 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV003 + LV00A LVA @@ -37769,17 +38567,18 @@ false + micro ORG-0231 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV003 + LV00A LVA @@ -37796,17 +38595,18 @@ false + micro ORG-0232 - AS “Olainfarm” + AS “Olainfarm” Rūpnīcu iela 5 Olaine LV-2114 - LV003 + LV00A LVA @@ -37823,17 +38623,18 @@ false + micro ORG-0233 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV003 + LV00A LVA @@ -37850,17 +38651,18 @@ false + micro ORG-0234 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV003 + LV00A LVA @@ -37877,17 +38679,18 @@ false + micro ORG-0235 - SIA “Magnum Medical” + SIA “Magnum Medical” Ulbrokas iela 23 Rīga LV-1021 - LV003 + LV00A LVA @@ -37904,17 +38707,18 @@ false + micro ORG-0236 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV003 + LV00A LVA @@ -37931,17 +38735,18 @@ false + micro ORG-0237 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV003 + LV00A LVA @@ -37958,17 +38763,18 @@ false + micro ORG-0238 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV003 + LV00A LVA @@ -37985,17 +38791,18 @@ false + micro ORG-0239 - SIA “Magnum Medical” + SIA “Magnum Medical” Ulbrokas iela 23 Rīga LV-1021 - LV003 + LV00A LVA @@ -38012,17 +38819,18 @@ false + micro ORG-0240 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV003 + LV00A LVA @@ -38039,17 +38847,18 @@ false + micro ORG-0241 - SIA “Magnum Medical” + SIA “Magnum Medical” Ulbrokas iela 23 Rīga LV-1021 - LV003 + LV00A LVA @@ -38066,17 +38875,18 @@ false + micro ORG-0242 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV003 + LV00A LVA @@ -38093,17 +38903,18 @@ false + micro ORG-0243 - SIA “Signamed” + SIA “Signamed” Brīvības gatve 226 k-2 Rīga LV-1039 - LV003 + LV00A LVA @@ -38120,17 +38931,18 @@ false + micro ORG-0244 - SIA “Magnum Medical” + SIA “Magnum Medical” Ulbrokas iela 23 Rīga LV-1021 - LV003 + LV00A LVA @@ -38147,17 +38959,18 @@ false + micro ORG-0245 - SIA “Magnum Medical” + SIA “Magnum Medical” Ulbrokas iela 23 Rīga LV-1021 - LV003 + LV00A LVA @@ -38174,17 +38987,18 @@ false + micro ORG-0246 - AS “Olainfarm” + AS “Olainfarm” Rūpnīcu iela 5 Olaine LV-2114 - LV003 + LV00A LVA @@ -38201,17 +39015,18 @@ false + micro ORG-0247 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV003 + LV00A LVA @@ -38228,17 +39043,18 @@ false + micro ORG-0248 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV003 + LV00A LVA @@ -38255,17 +39071,18 @@ false + micro ORG-0249 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -38282,17 +39099,18 @@ false + micro ORG-0250 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -38309,17 +39127,18 @@ false + micro ORG-0251 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -38336,17 +39155,18 @@ false + micro ORG-0252 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -38363,17 +39183,18 @@ false + micro ORG-0253 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -38390,17 +39211,18 @@ false + micro ORG-0254 - SIA “Magnum Medical” + SIA “Magnum Medical” Ulbrokas iela 23 Rīga LV-1021 - LV006 + LV00A LVA @@ -38417,17 +39239,18 @@ false + micro ORG-0255 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -38444,17 +39267,18 @@ false + micro ORG-0256 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -38471,17 +39295,18 @@ false + micro ORG-0257 - SIA “Magnum Medical” + SIA “Magnum Medical” Ulbrokas iela 23 Rīga LV-1021 - LV006 + LV00A LVA @@ -38498,17 +39323,18 @@ false + micro ORG-0258 - SIA “Oribalt Rīga” + SIA “Oribalt Rīga” Dzirnieku iela 26 Mārupe LV-2167 - LV006 + LV00A LVA @@ -38525,17 +39351,18 @@ false + micro ORG-0259 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -38552,17 +39379,18 @@ false + micro ORG-0260 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -38579,17 +39407,18 @@ false + micro ORG-0261 - SIA “Signamed” + SIA “Signamed” Brīvības gatve 226 k-2 Rīga LV-1039 - LV006 + LV00A LVA @@ -38606,17 +39435,18 @@ false + micro ORG-0262 - SIA “Magnum Medical” + SIA “Magnum Medical” Ulbrokas iela 23 Rīga LV-1021 - LV006 + LV00A LVA @@ -38633,17 +39463,18 @@ false + micro ORG-0263 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -38660,17 +39491,18 @@ false + micro ORG-0264 - SIA “Magnum Medical” + SIA “Magnum Medical” Ulbrokas iela 23 Rīga LV-1021 - LV006 + LV00A LVA @@ -38687,17 +39519,18 @@ false + micro ORG-0265 - SIA “Magnum Medical” + SIA “Magnum Medical” Ulbrokas iela 23 Rīga LV-1021 - LV006 + LV00A LVA @@ -38714,17 +39547,18 @@ false + micro ORG-0266 - SIA “Signamed” + SIA “Signamed” Brīvības gatve 226 k-2 Rīga LV-1039 - LV006 + LV00A LVA @@ -38741,17 +39575,18 @@ false + micro ORG-0267 - SIA “Aniss” + SIA “Aniss” Ulbrokas iela 19A Rīga LV-1021 - LV006 + LV00A LVA @@ -38768,17 +39603,18 @@ false + micro ORG-0268 - SIA “Signamed” + SIA “Signamed” Brīvības gatve 226 k-2 Rīga LV-1039 - LV006 + LV00A LVA @@ -38795,17 +39631,18 @@ false + micro ORG-0269 - SIA “Magnum Medical” + SIA “Magnum Medical” Ulbrokas iela 23 Rīga LV-1021 - LV006 + LV00A LVA @@ -38822,17 +39659,18 @@ false + micro ORG-0270 - SIA “B.Braun Medical” + SIA “B.Braun Medical” Ūdeļu iela 16 Rīga LV-1064 - LV006 + LV00A LVA @@ -38849,17 +39687,18 @@ false + micro ORG-0271 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -38876,17 +39715,18 @@ false + micro ORG-0272 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -38903,17 +39743,18 @@ false + micro ORG-0273 - SIA “B.Braun Medical” + SIA “B.Braun Medical” Ūdeļu iela 16 Rīga LV-1064 - LV006 + LV00A LVA @@ -38930,17 +39771,18 @@ false + micro ORG-0274 - SIA “B.Braun Medical” + SIA “B.Braun Medical” Ūdeļu iela 16 Rīga LV-1064 - LV006 + LV00A LVA @@ -38957,17 +39799,18 @@ false + micro ORG-0275 - SIA “A.Medical” + SIA “A.Medical” Varkaļu iela 13a Rīga LV-1067 - LV006 + LV00A LVA @@ -38984,17 +39827,18 @@ false + micro ORG-0276 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -39011,17 +39855,18 @@ false + micro ORG-0277 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -39038,17 +39883,18 @@ false + micro ORG-0278 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -39065,17 +39911,18 @@ false + micro ORG-0279 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -39092,17 +39939,18 @@ false + micro ORG-0280 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -39119,17 +39967,18 @@ false + micro ORG-0281 - SIA “Magnum Medical” + SIA “Magnum Medical” Ulbrokas iela 23 Rīga LV-1021 - LV006 + LV00A LVA @@ -39146,17 +39995,18 @@ false + micro ORG-0282 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -39173,17 +40023,18 @@ false + micro ORG-0283 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -39200,17 +40051,18 @@ false + micro ORG-0284 - AS “Recipe Plus” + AS “Recipe Plus” Mūkusalas iela 41B Rīga LV-1004 - LV006 + LV00A LVA @@ -39227,17 +40079,18 @@ false + micro ORG-0285 - SIA “Magnum Medical” + SIA “Magnum Medical” Ulbrokas iela 23 Rīga LV-1021 - LV006 + LV00A LVA @@ -39254,17 +40107,18 @@ false + micro ORG-0286 - SIA “B.Braun Medical” + SIA “B.Braun Medical” Ūdeļu iela 16 Rīga LV-1064 - LV006 + LV00A LVA @@ -39281,17 +40135,18 @@ false + micro ORG-0287 - SIA “Oribalt Rīga” + SIA “Oribalt Rīga” Dzirnieku iela 26 Mārupe LV-2167 - LV006 + LV00A LVA @@ -39313,13 +40168,13 @@ ORG-0002 - Iepirkumu uzraudzības birojs + Iepirkumu uzraudzības birojs Smilšu iela 1 Rīga LV-1919 - LV006 + LV00A LVA @@ -39345,7 +40200,7 @@ 2.3 - eforms-sdk-1.10 + eforms-sdk-1.13 e1e0a80a-6a9e-42f4-ae18-e2b8bd91bbde e7902ce8-a88b-4470-9d0e-f4ae0729370c 2024-03-22Z @@ -39353,7 +40208,7 @@ 01 32014L0024 can-standard - LAV + ENG pub-undert-la @@ -39380,12 +40235,23 @@ R1S 2023/17-IEP - Medikamentu iegāde - Medikamentu iegāde + Medikamentu iegāde + Medikamentu iegāde supplies 33000000 + + + Bruņinieku iela 5 + Rīga + LV-1001 + LV00A + + LVA + + + LOT-0001 @@ -39407,8 +40273,8 @@ price - Cena - Cena + Cena + Cena @@ -39419,7 +40285,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -39442,8 +40308,8 @@ R1S 2023/17-IEP1 - Polidocanolum, Dialysatum deproteinatum sanguinis vituli - Medikamentu iegāde + Polidocanolum, Dialysatum deproteinatum sanguinis vituli + Medikamentu iegāde supplies none @@ -39459,7 +40325,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -39487,8 +40353,8 @@ price - Cena - Cena + Cena + Cena @@ -39499,7 +40365,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -39522,8 +40388,8 @@ R1S 2023/17-IEP2 - Triamcinolone acetonide ,demeclocycline hydrochloride (Ledermix) - Medikamentu iegāde + Triamcinolone acetonide ,demeclocycline hydrochloride (Ledermix) + Medikamentu iegāde supplies none @@ -39539,7 +40405,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -39567,8 +40433,8 @@ price - Cena - Cena + Cena + Cena @@ -39579,7 +40445,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -39602,8 +40468,8 @@ R1S 2023/17-IEP3 - Lidocaini hydrochloridum, Matricariae extractum fluidum - Medikamentu iegāde + Lidocaini hydrochloridum, Matricariae extractum fluidum + Medikamentu iegāde supplies none @@ -39619,7 +40485,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -39647,8 +40513,8 @@ price - Cena - Cena + Cena + Cena @@ -39659,7 +40525,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -39682,8 +40548,8 @@ R1S 2023/17-IEP4 - Omeprazolum - Medikamentu iegāde + Omeprazolum + Medikamentu iegāde supplies none @@ -39699,7 +40565,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -39727,8 +40593,8 @@ price - Cena - Cena + Cena + Cena @@ -39739,7 +40605,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -39762,8 +40628,8 @@ R1S 2023/17-IEP5 - Pantoprazolum - Medikamentu iegāde + Pantoprazolum + Medikamentu iegāde supplies none @@ -39779,7 +40645,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -39807,8 +40673,8 @@ price - Cena - Cena + Cena + Cena @@ -39819,7 +40685,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -39842,8 +40708,8 @@ R1S 2023/17-IEP6 - Drotaverini hydrochlorium - Medikamentu iegāde + Drotaverini hydrochlorium + Medikamentu iegāde supplies none @@ -39859,7 +40725,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -39887,8 +40753,8 @@ price - Cena - Cena + Cena + Cena @@ -39899,7 +40765,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -39922,8 +40788,8 @@ R1S 2023/17-IEP7 - Atropini sulfas - Medikamentu iegāde + Atropini sulfas + Medikamentu iegāde supplies none @@ -39939,7 +40805,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -39967,8 +40833,8 @@ price - Cena - Cena + Cena + Cena @@ -39979,7 +40845,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -40002,8 +40868,8 @@ R1S 2023/17-IEP8 - Butylscopolamini bromidum - Medikamentu iegāde + Butylscopolamini bromidum + Medikamentu iegāde supplies none @@ -40019,7 +40885,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -40047,8 +40913,8 @@ price - Cena - Cena + Cena + Cena @@ -40059,7 +40925,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -40082,8 +40948,8 @@ R1S 2023/17-IEP9 - Metoclopramidum - Medikamentu iegāde + Metoclopramidum + Medikamentu iegāde supplies none @@ -40099,7 +40965,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -40127,8 +40993,8 @@ price - Cena - Cena + Cena + Cena @@ -40139,7 +41005,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -40162,8 +41028,8 @@ R1S 2023/17-IEP10 - Ondansetronum - Medikamentu iegāde + Ondansetronum + Medikamentu iegāde supplies none @@ -40179,7 +41045,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -40207,8 +41073,8 @@ price - Cena - Cena + Cena + Cena @@ -40219,7 +41085,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -40242,8 +41108,8 @@ R1S 2023/17-IEP11 - Bisacodilum - Medikamentu iegāde + Bisacodilum + Medikamentu iegāde supplies none @@ -40259,7 +41125,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -40287,8 +41153,8 @@ price - Cena - Cena + Cena + Cena @@ -40299,7 +41165,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -40322,8 +41188,8 @@ R1S 2023/17-IEP12 - Lactulosum - Medikamentu iegāde + Lactulosum + Medikamentu iegāde supplies none @@ -40339,7 +41205,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -40367,8 +41233,8 @@ price - Cena - Cena + Cena + Cena @@ -40379,7 +41245,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -40402,8 +41268,8 @@ R1S 2023/17-IEP13 - Sorbitolum, Natrii citras, Natrii laurilsulfoacetas - Medikamentu iegāde + Sorbitolum, Natrii citras, Natrii laurilsulfoacetas + Medikamentu iegāde supplies none @@ -40419,7 +41285,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -40447,8 +41313,8 @@ price - Cena - Cena + Cena + Cena @@ -40459,7 +41325,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -40482,8 +41348,8 @@ R1S 2023/17-IEP14 - Loperamidum - Medikamentu iegāde + Loperamidum + Medikamentu iegāde supplies none @@ -40499,7 +41365,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -40527,8 +41393,8 @@ price - Cena - Cena + Cena + Cena @@ -40539,7 +41405,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -40562,8 +41428,8 @@ R1S 2023/17-IEP15 - Insulinum lispro - ātras darbības insulīni, to analogi - Medikamentu iegāde + Insulinum lispro - ātras darbības insulīni, to analogi + Medikamentu iegāde supplies none @@ -40579,7 +41445,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -40607,8 +41473,8 @@ price - Cena - Cena + Cena + Cena @@ -40619,7 +41485,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -40642,8 +41508,8 @@ R1S 2023/17-IEP16 - Insulinum aspartum - ātras darbības insulīni, to analogi - Medikamentu iegāde + Insulinum aspartum - ātras darbības insulīni, to analogi + Medikamentu iegāde supplies none @@ -40659,7 +41525,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -40687,8 +41553,8 @@ price - Cena - Cena + Cena + Cena @@ -40699,7 +41565,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -40722,8 +41588,8 @@ R1S 2023/17-IEP17 - Insulinum glarginum - garas darbības insulīni, to analogi - Medikamentu iegāde + Insulinum glarginum - garas darbības insulīni, to analogi + Medikamentu iegāde supplies none @@ -40739,7 +41605,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -40767,8 +41633,8 @@ price - Cena - Cena + Cena + Cena @@ -40779,7 +41645,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -40802,8 +41668,8 @@ R1S 2023/17-IEP18 - Metformini hydrochloridum - Medikamentu iegāde + Metformini hydrochloridum + Medikamentu iegāde supplies none @@ -40819,7 +41685,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -40847,8 +41713,8 @@ price - Cena - Cena + Cena + Cena @@ -40859,7 +41725,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -40882,8 +41748,8 @@ R1S 2023/17-IEP19 - Metformini hydrochloridum - Medikamentu iegāde + Metformini hydrochloridum + Medikamentu iegāde supplies none @@ -40899,7 +41765,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -40927,8 +41793,8 @@ price - Cena - Cena + Cena + Cena @@ -40939,7 +41805,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -40962,8 +41828,8 @@ R1S 2023/17-IEP20 - Thiamini hydrochloridum - Medikamentu iegāde + Thiamini hydrochloridum + Medikamentu iegāde supplies none @@ -40979,7 +41845,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -41007,8 +41873,8 @@ price - Cena - Cena + Cena + Cena @@ -41019,7 +41885,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -41042,8 +41908,8 @@ R1S 2023/17-IEP21 - Pyridoxini hydrochloridum - Medikamentu iegāde + Pyridoxini hydrochloridum + Medikamentu iegāde supplies none @@ -41059,7 +41925,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -41087,8 +41953,8 @@ price - Cena - Cena + Cena + Cena @@ -41099,7 +41965,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -41122,8 +41988,8 @@ R1S 2023/17-IEP22 - Calcii gluconas - Medikamentu iegāde + Calcii gluconas + Medikamentu iegāde supplies none @@ -41139,7 +42005,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -41167,8 +42033,8 @@ price - Cena - Cena + Cena + Cena @@ -41179,7 +42045,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -41202,8 +42068,8 @@ R1S 2023/17-IEP23 - Heparinum natricum - Medikamentu iegāde + Heparinum natricum + Medikamentu iegāde supplies none @@ -41219,7 +42085,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -41247,8 +42113,8 @@ price - Cena - Cena + Cena + Cena @@ -41259,7 +42125,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -41282,8 +42148,8 @@ R1S 2023/17-IEP24 - Heparinum natricum - Medikamentu iegāde + Heparinum natricum + Medikamentu iegāde supplies none @@ -41299,7 +42165,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -41327,8 +42193,8 @@ price - Cena - Cena + Cena + Cena @@ -41339,7 +42205,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -41362,8 +42228,8 @@ R1S 2023/17-IEP25 - Bemiparinum natrium - Medikamentu iegāde + Bemiparinum natrium + Medikamentu iegāde supplies none @@ -41379,7 +42245,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -41407,8 +42273,8 @@ price - Cena - Cena + Cena + Cena @@ -41419,7 +42285,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -41442,8 +42308,8 @@ R1S 2023/17-IEP26 - Bemiparinum natrium - Medikamentu iegāde + Bemiparinum natrium + Medikamentu iegāde supplies none @@ -41459,7 +42325,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -41487,8 +42353,8 @@ price - Cena - Cena + Cena + Cena @@ -41499,7 +42365,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -41522,8 +42388,8 @@ R1S 2023/17-IEP27 - Nadroparinum calcicum - Medikamentu iegāde + Nadroparinum calcicum + Medikamentu iegāde supplies none @@ -41539,7 +42405,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -41567,8 +42433,8 @@ price - Cena - Cena + Cena + Cena @@ -41579,7 +42445,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -41602,8 +42468,8 @@ R1S 2023/17-IEP28 - Nadroparinum calcicum - Medikamentu iegāde + Nadroparinum calcicum + Medikamentu iegāde supplies none @@ -41619,7 +42485,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -41647,8 +42513,8 @@ price - Cena - Cena + Cena + Cena @@ -41659,7 +42525,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -41682,8 +42548,8 @@ R1S 2023/17-IEP29 - Acidum acetylsalicylicum - Medikamentu iegāde + Acidum acetylsalicylicum + Medikamentu iegāde supplies none @@ -41699,7 +42565,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -41727,8 +42593,8 @@ price - Cena - Cena + Cena + Cena @@ -41739,7 +42605,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -41762,8 +42628,8 @@ R1S 2023/17-IEP30 - Rivaroxabanum - Medikamentu iegāde + Rivaroxabanum + Medikamentu iegāde supplies none @@ -41779,7 +42645,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -41807,8 +42673,8 @@ price - Cena - Cena + Cena + Cena @@ -41819,7 +42685,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -41842,8 +42708,8 @@ R1S 2023/17-IEP31 - Etamsylatum - Medikamentu iegāde + Etamsylatum + Medikamentu iegāde supplies none @@ -41859,7 +42725,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -41887,8 +42753,8 @@ price - Cena - Cena + Cena + Cena @@ -41899,7 +42765,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -41922,8 +42788,8 @@ R1S 2023/17-IEP32 - Acidum tranexamicum - Medikamentu iegāde + Acidum tranexamicum + Medikamentu iegāde supplies none @@ -41939,7 +42805,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -41967,8 +42833,8 @@ price - Cena - Cena + Cena + Cena @@ -41979,7 +42845,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -42002,8 +42868,8 @@ R1S 2023/17-IEP33 - Fibrinogenum humanum, Thrombinum humanum, 4,8cm*4,8cm *0,5cm - Medikamentu iegāde + Fibrinogenum humanum, Thrombinum humanum, 4,8cm*4,8cm *0,5cm + Medikamentu iegāde supplies none @@ -42019,7 +42885,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -42047,8 +42913,8 @@ price - Cena - Cena + Cena + Cena @@ -42059,7 +42925,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -42082,8 +42948,8 @@ R1S 2023/17-IEP34 - Phytomenadionum - Medikamentu iegāde + Phytomenadionum + Medikamentu iegāde supplies none @@ -42099,7 +42965,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -42127,8 +42993,8 @@ price - Cena - Cena + Cena + Cena @@ -42139,7 +43005,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -42162,8 +43028,8 @@ R1S 2023/17-IEP35 - Phytomenadionum - Medikamentu iegāde + Phytomenadionum + Medikamentu iegāde supplies none @@ -42179,7 +43045,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -42207,8 +43073,8 @@ price - Cena - Cena + Cena + Cena @@ -42219,7 +43085,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -42242,8 +43108,8 @@ R1S 2023/17-IEP36 - Cyanocobolaminum - Medikamentu iegāde + Cyanocobolaminum + Medikamentu iegāde supplies none @@ -42259,7 +43125,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -42287,8 +43153,8 @@ price - Cena - Cena + Cena + Cena @@ -42299,7 +43165,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -42322,8 +43188,8 @@ R1S 2023/17-IEP37 - *Elektrolītu šķīdums (Ringera) - Medikamentu iegāde + *Elektrolītu šķīdums (Ringera) + Medikamentu iegāde supplies none @@ -42339,7 +43205,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -42367,8 +43233,8 @@ price - Cena - Cena + Cena + Cena @@ -42379,7 +43245,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -42402,8 +43268,8 @@ R1S 2023/17-IEP38 - **Elektrolītu šķīdums (Ringera) - Medikamentu iegāde + **Elektrolītu šķīdums (Ringera) + Medikamentu iegāde supplies none @@ -42419,7 +43285,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -42447,8 +43313,8 @@ price - Cena - Cena + Cena + Cena @@ -42459,7 +43325,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -42482,8 +43348,8 @@ R1S 2023/17-IEP39 - *Elektrolītu šķīdums (Ringera) - Medikamentu iegāde + *Elektrolītu šķīdums (Ringera) + Medikamentu iegāde supplies none @@ -42499,7 +43365,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -42527,8 +43393,8 @@ price - Cena - Cena + Cena + Cena @@ -42539,7 +43405,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -42562,8 +43428,8 @@ R1S 2023/17-IEP40 - **Elektrolītu šķīdums (Ringera) - Medikamentu iegāde + **Elektrolītu šķīdums (Ringera) + Medikamentu iegāde supplies none @@ -42579,7 +43445,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -42607,8 +43473,8 @@ price - Cena - Cena + Cena + Cena @@ -42619,7 +43485,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -42642,8 +43508,8 @@ R1S 2023/17-IEP41 - *Elektolīti un ogļhidrāti (Sterofundin BG-5) - Medikamentu iegāde + *Elektolīti un ogļhidrāti (Sterofundin BG-5) + Medikamentu iegāde supplies none @@ -42659,7 +43525,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -42687,8 +43553,8 @@ price - Cena - Cena + Cena + Cena @@ -42699,7 +43565,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -42722,8 +43588,8 @@ R1S 2023/17-IEP42 - *Elektolīti un ogļhidrāti (Sterofundin BG-5) - Medikamentu iegāde + *Elektolīti un ogļhidrāti (Sterofundin BG-5) + Medikamentu iegāde supplies none @@ -42739,7 +43605,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -42767,8 +43633,8 @@ price - Cena - Cena + Cena + Cena @@ -42779,7 +43645,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -42802,8 +43668,8 @@ R1S 2023/17-IEP43 - *Glucosum - Medikamentu iegāde + *Glucosum + Medikamentu iegāde supplies none @@ -42819,7 +43685,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -42847,8 +43713,8 @@ price - Cena - Cena + Cena + Cena @@ -42859,7 +43725,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -42882,8 +43748,8 @@ R1S 2023/17-IEP44 - **Glucosum - Medikamentu iegāde + **Glucosum + Medikamentu iegāde supplies none @@ -42899,7 +43765,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -42927,8 +43793,8 @@ price - Cena - Cena + Cena + Cena @@ -42939,7 +43805,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -42962,8 +43828,8 @@ R1S 2023/17-IEP45 - *Glucosum - Medikamentu iegāde + *Glucosum + Medikamentu iegāde supplies none @@ -42979,7 +43845,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -43007,8 +43873,8 @@ price - Cena - Cena + Cena + Cena @@ -43019,7 +43885,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -43042,8 +43908,8 @@ R1S 2023/17-IEP46 - **Glucosum - Medikamentu iegāde + **Glucosum + Medikamentu iegāde supplies none @@ -43059,7 +43925,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -43087,8 +43953,8 @@ price - Cena - Cena + Cena + Cena @@ -43099,7 +43965,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -43122,8 +43988,8 @@ R1S 2023/17-IEP47 - *Glucosum - Medikamentu iegāde + *Glucosum + Medikamentu iegāde supplies none @@ -43139,7 +44005,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -43167,8 +44033,8 @@ price - Cena - Cena + Cena + Cena @@ -43179,7 +44045,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -43202,8 +44068,8 @@ R1S 2023/17-IEP48 - Glucosum - Medikamentu iegāde + Glucosum + Medikamentu iegāde supplies none @@ -43219,7 +44085,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -43247,8 +44113,8 @@ price - Cena - Cena + Cena + Cena @@ -43259,7 +44125,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -43282,8 +44148,8 @@ R1S 2023/17-IEP49 - Glucosum - Medikamentu iegāde + Glucosum + Medikamentu iegāde supplies none @@ -43299,7 +44165,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -43327,8 +44193,8 @@ price - Cena - Cena + Cena + Cena @@ -43339,7 +44205,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -43362,8 +44228,8 @@ R1S 2023/17-IEP50 - Gelatinum succinas, Natrii chloridum, Natrii hydroxidum - Medikamentu iegāde + Gelatinum succinas, Natrii chloridum, Natrii hydroxidum + Medikamentu iegāde supplies none @@ -43379,7 +44245,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -43407,8 +44273,8 @@ price - Cena - Cena + Cena + Cena @@ -43419,7 +44285,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -43442,8 +44308,8 @@ R1S 2023/17-IEP51 - Central emulsija infūzijām - Medikamentu iegāde + Central emulsija infūzijām + Medikamentu iegāde supplies none @@ -43459,7 +44325,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -43487,8 +44353,8 @@ price - Cena - Cena + Cena + Cena @@ -43499,7 +44365,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -43522,8 +44388,8 @@ R1S 2023/17-IEP52 - Peripheral emulsija infūzijām - Medikamentu iegāde + Peripheral emulsija infūzijām + Medikamentu iegāde supplies none @@ -43539,7 +44405,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -43567,8 +44433,8 @@ price - Cena - Cena + Cena + Cena @@ -43579,7 +44445,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -43602,8 +44468,8 @@ R1S 2023/17-IEP53 - *Mannitolum - Medikamentu iegāde + *Mannitolum + Medikamentu iegāde supplies none @@ -43619,7 +44485,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -43647,8 +44513,8 @@ price - Cena - Cena + Cena + Cena @@ -43659,7 +44525,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -43682,8 +44548,8 @@ R1S 2023/17-IEP54 - Kalii chloridum - Medikamentu iegāde + Kalii chloridum + Medikamentu iegāde supplies none @@ -43699,7 +44565,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -43727,8 +44593,8 @@ price - Cena - Cena + Cena + Cena @@ -43739,7 +44605,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -43762,8 +44628,8 @@ R1S 2023/17-IEP55 - Kalii chloridum - Medikamentu iegāde + Kalii chloridum + Medikamentu iegāde supplies none @@ -43779,7 +44645,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -43807,8 +44673,8 @@ price - Cena - Cena + Cena + Cena @@ -43819,7 +44685,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -43842,8 +44708,8 @@ R1S 2023/17-IEP56 - Natrii chloridum - Medikamentu iegāde + Natrii chloridum + Medikamentu iegāde supplies none @@ -43859,7 +44725,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -43887,8 +44753,8 @@ price - Cena - Cena + Cena + Cena @@ -43899,7 +44765,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -43922,8 +44788,8 @@ R1S 2023/17-IEP57 - Natrii chloridum - Medikamentu iegāde + Natrii chloridum + Medikamentu iegāde supplies none @@ -43939,7 +44805,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -43967,8 +44833,8 @@ price - Cena - Cena + Cena + Cena @@ -43979,7 +44845,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -44002,8 +44868,8 @@ R1S 2023/17-IEP58 - *Natrii chloridum - Medikamentu iegāde + *Natrii chloridum + Medikamentu iegāde supplies none @@ -44019,7 +44885,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -44047,8 +44913,8 @@ price - Cena - Cena + Cena + Cena @@ -44059,7 +44925,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -44082,8 +44948,8 @@ R1S 2023/17-IEP59 - **Natrii chloridum - Medikamentu iegāde + **Natrii chloridum + Medikamentu iegāde supplies none @@ -44099,7 +44965,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -44127,8 +44993,8 @@ price - Cena - Cena + Cena + Cena @@ -44139,7 +45005,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -44162,8 +45028,8 @@ R1S 2023/17-IEP60 - *Natrii chloridum - Medikamentu iegāde + *Natrii chloridum + Medikamentu iegāde supplies none @@ -44179,7 +45045,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -44207,8 +45073,8 @@ price - Cena - Cena + Cena + Cena @@ -44219,7 +45085,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -44242,8 +45108,8 @@ R1S 2023/17-IEP61 - **Natrii chloridum - Medikamentu iegāde + **Natrii chloridum + Medikamentu iegāde supplies none @@ -44259,7 +45125,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -44287,8 +45153,8 @@ price - Cena - Cena + Cena + Cena @@ -44299,7 +45165,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -44322,8 +45188,8 @@ R1S 2023/17-IEP62 - *Natrii chloridum - Medikamentu iegāde + *Natrii chloridum + Medikamentu iegāde supplies none @@ -44339,7 +45205,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -44367,8 +45233,8 @@ price - Cena - Cena + Cena + Cena @@ -44379,7 +45245,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -44402,8 +45268,8 @@ R1S 2023/17-IEP63 - **Natrii chloridum - Medikamentu iegāde + **Natrii chloridum + Medikamentu iegāde supplies none @@ -44419,7 +45285,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -44447,8 +45313,8 @@ price - Cena - Cena + Cena + Cena @@ -44459,7 +45325,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -44482,8 +45348,8 @@ R1S 2023/17-IEP64 - Natrii chloridum - Medikamentu iegāde + Natrii chloridum + Medikamentu iegāde supplies none @@ -44499,7 +45365,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -44527,8 +45393,8 @@ price - Cena - Cena + Cena + Cena @@ -44539,7 +45405,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -44562,8 +45428,8 @@ R1S 2023/17-IEP65 - Natrii chloridum - Medikamentu iegāde + Natrii chloridum + Medikamentu iegāde supplies none @@ -44579,7 +45445,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -44607,8 +45473,8 @@ price - Cena - Cena + Cena + Cena @@ -44619,7 +45485,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -44642,8 +45508,8 @@ R1S 2023/17-IEP66 - *Natrii chloridum - Medikamentu iegāde + *Natrii chloridum + Medikamentu iegāde supplies none @@ -44659,7 +45525,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -44687,8 +45553,8 @@ price - Cena - Cena + Cena + Cena @@ -44699,7 +45565,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -44722,8 +45588,8 @@ R1S 2023/17-IEP67 - **Natrii chloridum - Medikamentu iegāde + **Natrii chloridum + Medikamentu iegāde supplies none @@ -44739,7 +45605,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -44767,8 +45633,8 @@ price - Cena - Cena + Cena + Cena @@ -44779,7 +45645,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -44802,8 +45668,8 @@ R1S 2023/17-IEP68 - **Natrii chloridum - Medikamentu iegāde + **Natrii chloridum + Medikamentu iegāde supplies none @@ -44819,7 +45685,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -44847,8 +45713,8 @@ price - Cena - Cena + Cena + Cena @@ -44859,7 +45725,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -44882,8 +45748,8 @@ R1S 2023/17-IEP69 - Natrii chloridum - Medikamentu iegāde + Natrii chloridum + Medikamentu iegāde supplies none @@ -44899,7 +45765,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -44927,8 +45793,8 @@ price - Cena - Cena + Cena + Cena @@ -44939,7 +45805,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -44962,8 +45828,8 @@ R1S 2023/17-IEP70 - Natrii chloridum - Medikamentu iegāde + Natrii chloridum + Medikamentu iegāde supplies none @@ -44979,7 +45845,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -45007,8 +45873,8 @@ price - Cena - Cena + Cena + Cena @@ -45019,7 +45885,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -45042,8 +45908,8 @@ R1S 2023/17-IEP71 - Natrii hydrocarbonas - Medikamentu iegāde + Natrii hydrocarbonas + Medikamentu iegāde supplies none @@ -45059,7 +45925,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -45087,8 +45953,8 @@ price - Cena - Cena + Cena + Cena @@ -45099,7 +45965,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -45122,8 +45988,8 @@ R1S 2023/17-IEP72 - Natrii hydrocarbonas - Medikamentu iegāde + Natrii hydrocarbonas + Medikamentu iegāde supplies none @@ -45139,7 +46005,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -45167,8 +46033,8 @@ price - Cena - Cena + Cena + Cena @@ -45179,7 +46045,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -45202,8 +46068,8 @@ R1S 2023/17-IEP73 - Magnesii sulfas - Medikamentu iegāde + Magnesii sulfas + Medikamentu iegāde supplies none @@ -45219,7 +46085,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -45247,8 +46113,8 @@ price - Cena - Cena + Cena + Cena @@ -45259,7 +46125,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -45282,8 +46148,8 @@ R1S 2023/17-IEP74 - Digoxinum - Medikamentu iegāde + Digoxinum + Medikamentu iegāde supplies none @@ -45299,7 +46165,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -45327,8 +46193,8 @@ price - Cena - Cena + Cena + Cena @@ -45339,7 +46205,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -45362,8 +46228,8 @@ R1S 2023/17-IEP75 - Amiodaronum - Medikamentu iegāde + Amiodaronum + Medikamentu iegāde supplies none @@ -45379,7 +46245,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -45407,8 +46273,8 @@ price - Cena - Cena + Cena + Cena @@ -45419,7 +46285,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -45442,8 +46308,8 @@ R1S 2023/17-IEP76 - Norepinephrinum - Medikamentu iegāde + Norepinephrinum + Medikamentu iegāde supplies none @@ -45459,7 +46325,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -45487,8 +46353,8 @@ price - Cena - Cena + Cena + Cena @@ -45499,7 +46365,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -45522,8 +46388,8 @@ R1S 2023/17-IEP77 - Ephedrini hydrohloridum - Medikamentu iegāde + Ephedrini hydrohloridum + Medikamentu iegāde supplies none @@ -45539,7 +46405,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -45567,8 +46433,8 @@ price - Cena - Cena + Cena + Cena @@ -45579,7 +46445,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -45602,8 +46468,8 @@ R1S 2023/17-IEP78 - Dopamini hydrochloridum - Medikamentu iegāde + Dopamini hydrochloridum + Medikamentu iegāde supplies none @@ -45619,7 +46485,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -45647,8 +46513,8 @@ price - Cena - Cena + Cena + Cena @@ -45659,7 +46525,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -45682,8 +46548,8 @@ R1S 2023/17-IEP79 - Dobutaminum - Medikamentu iegāde + Dobutaminum + Medikamentu iegāde supplies none @@ -45699,7 +46565,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -45727,8 +46593,8 @@ price - Cena - Cena + Cena + Cena @@ -45739,7 +46605,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -45762,8 +46628,8 @@ R1S 2023/17-IEP80 - Epinephrinum - Medikamentu iegāde + Epinephrinum + Medikamentu iegāde supplies none @@ -45779,7 +46645,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -45807,8 +46673,8 @@ price - Cena - Cena + Cena + Cena @@ -45819,7 +46685,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -45842,8 +46708,8 @@ R1S 2023/17-IEP81 - Glyceroli trinitras - Medikamentu iegāde + Glyceroli trinitras + Medikamentu iegāde supplies none @@ -45859,7 +46725,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -45887,8 +46753,8 @@ price - Cena - Cena + Cena + Cena @@ -45899,7 +46765,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -45922,8 +46788,8 @@ R1S 2023/17-IEP82 - Glyceroli trinitras - Medikamentu iegāde + Glyceroli trinitras + Medikamentu iegāde supplies none @@ -45939,7 +46805,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -45967,8 +46833,8 @@ price - Cena - Cena + Cena + Cena @@ -45979,7 +46845,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -46002,8 +46868,8 @@ R1S 2023/17-IEP83 - Meldonium - Medikamentu iegāde + Meldonium + Medikamentu iegāde supplies none @@ -46019,7 +46885,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -46047,8 +46913,8 @@ price - Cena - Cena + Cena + Cena @@ -46059,7 +46925,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -46082,8 +46948,8 @@ R1S 2023/17-IEP84 - Adenosinum - Medikamentu iegāde + Adenosinum + Medikamentu iegāde supplies none @@ -46099,7 +46965,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -46127,8 +46993,8 @@ price - Cena - Cena + Cena + Cena @@ -46139,7 +47005,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -46162,8 +47028,8 @@ R1S 2023/17-IEP85 - Ivabradinum - Medikamentu iegāde + Ivabradinum + Medikamentu iegāde supplies none @@ -46179,7 +47045,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -46207,8 +47073,8 @@ price - Cena - Cena + Cena + Cena @@ -46219,7 +47085,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -46242,8 +47108,8 @@ R1S 2023/17-IEP86 - Clonidinum - Medikamentu iegāde + Clonidinum + Medikamentu iegāde supplies none @@ -46259,7 +47125,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -46287,8 +47153,8 @@ price - Cena - Cena + Cena + Cena @@ -46299,7 +47165,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -46322,8 +47188,8 @@ R1S 2023/17-IEP87 - Clonidinum - Medikamentu iegāde + Clonidinum + Medikamentu iegāde supplies none @@ -46339,7 +47205,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -46367,8 +47233,8 @@ price - Cena - Cena + Cena + Cena @@ -46379,7 +47245,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -46402,8 +47268,8 @@ R1S 2023/17-IEP88 - Furosemidum - Medikamentu iegāde + Furosemidum + Medikamentu iegāde supplies none @@ -46419,7 +47285,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -46447,8 +47313,8 @@ price - Cena - Cena + Cena + Cena @@ -46459,7 +47325,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -46482,8 +47348,8 @@ R1S 2023/17-IEP89 - Furosemidum - Medikamentu iegāde + Furosemidum + Medikamentu iegāde supplies none @@ -46499,7 +47365,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -46527,8 +47393,8 @@ price - Cena - Cena + Cena + Cena @@ -46539,7 +47405,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -46562,8 +47428,8 @@ R1S 2023/17-IEP90 - Torasemidum - Medikamentu iegāde + Torasemidum + Medikamentu iegāde supplies none @@ -46579,7 +47445,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -46607,8 +47473,8 @@ price - Cena - Cena + Cena + Cena @@ -46619,7 +47485,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -46642,8 +47508,8 @@ R1S 2023/17-IEP91 - Spironolactonum - Medikamentu iegāde + Spironolactonum + Medikamentu iegāde supplies none @@ -46659,7 +47525,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -46687,8 +47553,8 @@ price - Cena - Cena + Cena + Cena @@ -46699,7 +47565,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -46722,8 +47588,8 @@ R1S 2023/17-IEP92 - Pentoxifyllinum - Medikamentu iegāde + Pentoxifyllinum + Medikamentu iegāde supplies none @@ -46739,7 +47605,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -46767,8 +47633,8 @@ price - Cena - Cena + Cena + Cena @@ -46779,7 +47645,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -46802,8 +47668,8 @@ R1S 2023/17-IEP93 - Xylocain - Medikamentu iegāde + Xylocain + Medikamentu iegāde supplies none @@ -46819,7 +47685,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -46847,8 +47713,8 @@ price - Cena - Cena + Cena + Cena @@ -46859,7 +47725,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -46882,8 +47748,8 @@ R1S 2023/17-IEP94 - Xylocain - Medikamentu iegāde + Xylocain + Medikamentu iegāde supplies none @@ -46899,7 +47765,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -46927,8 +47793,8 @@ price - Cena - Cena + Cena + Cena @@ -46939,7 +47805,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -46962,8 +47828,8 @@ R1S 2023/17-IEP95 - Troxerutinum - Medikamentu iegāde + Troxerutinum + Medikamentu iegāde supplies none @@ -46979,7 +47845,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -47007,8 +47873,8 @@ price - Cena - Cena + Cena + Cena @@ -47019,7 +47885,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -47042,8 +47908,8 @@ R1S 2023/17-IEP96 - Polidocanolum - Medikamentu iegāde + Polidocanolum + Medikamentu iegāde supplies none @@ -47059,7 +47925,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -47087,8 +47953,8 @@ price - Cena - Cena + Cena + Cena @@ -47099,7 +47965,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -47122,8 +47988,8 @@ R1S 2023/17-IEP97 - Propranololum - Medikamentu iegāde + Propranololum + Medikamentu iegāde supplies none @@ -47139,7 +48005,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -47167,8 +48033,8 @@ price - Cena - Cena + Cena + Cena @@ -47179,7 +48045,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -47202,8 +48068,8 @@ R1S 2023/17-IEP98 - Metoprololi tartras - Medikamentu iegāde + Metoprololi tartras + Medikamentu iegāde supplies none @@ -47219,7 +48085,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -47247,8 +48113,8 @@ price - Cena - Cena + Cena + Cena @@ -47259,7 +48125,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -47282,8 +48148,8 @@ R1S 2023/17-IEP99 - Bisoprololi fumaras - Medikamentu iegāde + Bisoprololi fumaras + Medikamentu iegāde supplies none @@ -47299,7 +48165,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -47327,8 +48193,8 @@ price - Cena - Cena + Cena + Cena @@ -47339,7 +48205,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -47362,8 +48228,8 @@ R1S 2023/17-IEP100 - Nebivololum - Medikamentu iegāde + Nebivololum + Medikamentu iegāde supplies none @@ -47379,7 +48245,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -47407,8 +48273,8 @@ price - Cena - Cena + Cena + Cena @@ -47419,7 +48285,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -47442,8 +48308,8 @@ R1S 2023/17-IEP101 - Labetalolum - Medikamentu iegāde + Labetalolum + Medikamentu iegāde supplies none @@ -47459,7 +48325,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -47487,8 +48353,8 @@ price - Cena - Cena + Cena + Cena @@ -47499,7 +48365,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -47522,8 +48388,8 @@ R1S 2023/17-IEP102 - Amlodipinum - Medikamentu iegāde + Amlodipinum + Medikamentu iegāde supplies none @@ -47539,7 +48405,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -47567,8 +48433,8 @@ price - Cena - Cena + Cena + Cena @@ -47579,7 +48445,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -47602,8 +48468,8 @@ R1S 2023/17-IEP103 - Nitrendipinum - Medikamentu iegāde + Nitrendipinum + Medikamentu iegāde supplies none @@ -47619,7 +48485,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -47647,8 +48513,8 @@ price - Cena - Cena + Cena + Cena @@ -47659,7 +48525,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -47682,8 +48548,8 @@ R1S 2023/17-IEP104 - Verapamili hydrochloridum - Medikamentu iegāde + Verapamili hydrochloridum + Medikamentu iegāde supplies none @@ -47699,7 +48565,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -47727,8 +48593,8 @@ price - Cena - Cena + Cena + Cena @@ -47739,7 +48605,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -47762,8 +48628,8 @@ R1S 2023/17-IEP105 - Captoprilum - Medikamentu iegāde + Captoprilum + Medikamentu iegāde supplies none @@ -47779,7 +48645,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -47807,8 +48673,8 @@ price - Cena - Cena + Cena + Cena @@ -47819,7 +48685,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -47842,8 +48708,8 @@ R1S 2023/17-IEP106 - Enalaprilum - Medikamentu iegāde + Enalaprilum + Medikamentu iegāde supplies none @@ -47859,7 +48725,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -47887,8 +48753,8 @@ price - Cena - Cena + Cena + Cena @@ -47899,7 +48765,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -47922,8 +48788,8 @@ R1S 2023/17-IEP107 - Enalaprilatum - Medikamentu iegāde + Enalaprilatum + Medikamentu iegāde supplies none @@ -47939,7 +48805,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -47967,8 +48833,8 @@ price - Cena - Cena + Cena + Cena @@ -47979,7 +48845,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -48002,8 +48868,8 @@ R1S 2023/17-IEP108 - Perindoprili argininum - Medikamentu iegāde + Perindoprili argininum + Medikamentu iegāde supplies none @@ -48019,7 +48885,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -48047,8 +48913,8 @@ price - Cena - Cena + Cena + Cena @@ -48059,7 +48925,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -48082,8 +48948,8 @@ R1S 2023/17-IEP109 - Isoconazoli nitras, Diflucortoloni valeras - Medikamentu iegāde + Isoconazoli nitras, Diflucortoloni valeras + Medikamentu iegāde supplies none @@ -48099,7 +48965,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -48127,8 +48993,8 @@ price - Cena - Cena + Cena + Cena @@ -48139,7 +49005,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -48162,8 +49028,8 @@ R1S 2023/17-IEP110 - Zinci oxydum - Medikamentu iegāde + Zinci oxydum + Medikamentu iegāde supplies none @@ -48179,7 +49045,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -48207,8 +49073,8 @@ price - Cena - Cena + Cena + Cena @@ -48219,7 +49085,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -48242,8 +49108,8 @@ R1S 2023/17-IEP111 - Sulfathiazolum argentum - Medikamentu iegāde + Sulfathiazolum argentum + Medikamentu iegāde supplies none @@ -48259,7 +49125,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -48287,8 +49153,8 @@ price - Cena - Cena + Cena + Cena @@ -48299,7 +49165,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -48322,8 +49188,8 @@ R1S 2023/17-IEP112 - Dexpanthenolum - Medikamentu iegāde + Dexpanthenolum + Medikamentu iegāde supplies none @@ -48339,7 +49205,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -48367,8 +49233,8 @@ price - Cena - Cena + Cena + Cena @@ -48379,7 +49245,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -48402,8 +49268,8 @@ R1S 2023/17-IEP113 - Dexpanthenolum - Medikamentu iegāde + Dexpanthenolum + Medikamentu iegāde supplies none @@ -48419,7 +49285,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -48447,8 +49313,8 @@ price - Cena - Cena + Cena + Cena @@ -48459,7 +49325,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -48482,8 +49348,8 @@ R1S 2023/17-IEP114 - Acidum fusidicum - Medikamentu iegāde + Acidum fusidicum + Medikamentu iegāde supplies none @@ -48499,7 +49365,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -48527,8 +49393,8 @@ price - Cena - Cena + Cena + Cena @@ -48539,7 +49405,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -48562,8 +49428,8 @@ R1S 2023/17-IEP115 - Acidum fusidicum - Medikamentu iegāde + Acidum fusidicum + Medikamentu iegāde supplies none @@ -48579,7 +49445,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -48607,8 +49473,8 @@ price - Cena - Cena + Cena + Cena @@ -48619,7 +49485,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -48642,8 +49508,8 @@ R1S 2023/17-IEP116 - Methyluracilum, Lidocainum - Medikamentu iegāde + Methyluracilum, Lidocainum + Medikamentu iegāde supplies none @@ -48659,7 +49525,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -48687,8 +49553,8 @@ price - Cena - Cena + Cena + Cena @@ -48699,7 +49565,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -48722,8 +49588,8 @@ R1S 2023/17-IEP117 - Methyluracilum, Chloramphenicolum - Medikamentu iegāde + Methyluracilum, Chloramphenicolum + Medikamentu iegāde supplies none @@ -48739,7 +49605,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -48767,8 +49633,8 @@ price - Cena - Cena + Cena + Cena @@ -48779,7 +49645,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -48802,8 +49668,8 @@ R1S 2023/17-IEP118 - Hydrocortisonum - Medikamentu iegāde + Hydrocortisonum + Medikamentu iegāde supplies none @@ -48819,7 +49685,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -48847,8 +49713,8 @@ price - Cena - Cena + Cena + Cena @@ -48859,7 +49725,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -48882,8 +49748,8 @@ R1S 2023/17-IEP119 - Fluocinoloni acetonidum - Medikamentu iegāde + Fluocinoloni acetonidum + Medikamentu iegāde supplies none @@ -48899,7 +49765,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -48927,8 +49793,8 @@ price - Cena - Cena + Cena + Cena @@ -48939,7 +49805,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -48962,8 +49828,8 @@ R1S 2023/17-IEP120 - Fluocinoloni acetonidum - Medikamentu iegāde + Fluocinoloni acetonidum + Medikamentu iegāde supplies none @@ -48979,7 +49845,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -49007,8 +49873,8 @@ price - Cena - Cena + Cena + Cena @@ -49019,7 +49885,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -49042,8 +49908,8 @@ R1S 2023/17-IEP121 - Acidum boricum - Medikamentu iegāde + Acidum boricum + Medikamentu iegāde supplies none @@ -49059,7 +49925,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -49087,8 +49953,8 @@ price - Cena - Cena + Cena + Cena @@ -49099,7 +49965,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -49122,8 +49988,8 @@ R1S 2023/17-IEP122 - Povidonum iodinatum - Medikamentu iegāde + Povidonum iodinatum + Medikamentu iegāde supplies none @@ -49139,7 +50005,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -49167,8 +50033,8 @@ price - Cena - Cena + Cena + Cena @@ -49179,7 +50045,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -49202,8 +50068,8 @@ R1S 2023/17-IEP123 - Povidonum iodinatum - Medikamentu iegāde + Povidonum iodinatum + Medikamentu iegāde supplies none @@ -49219,7 +50085,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -49247,8 +50113,8 @@ price - Cena - Cena + Cena + Cena @@ -49259,7 +50125,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -49282,8 +50148,8 @@ R1S 2023/17-IEP124 - Iodum - Medikamentu iegāde + Iodum + Medikamentu iegāde supplies none @@ -49299,7 +50165,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -49327,8 +50193,8 @@ price - Cena - Cena + Cena + Cena @@ -49339,7 +50205,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -49362,8 +50228,8 @@ R1S 2023/17-IEP125 - Viride nitens, sp.aethylicus - Medikamentu iegāde + Viride nitens, sp.aethylicus + Medikamentu iegāde supplies none @@ -49379,7 +50245,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -49407,8 +50273,8 @@ price - Cena - Cena + Cena + Cena @@ -49419,7 +50285,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -49442,8 +50308,8 @@ R1S 2023/17-IEP126 - Hydrogenii peroxidum - Medikamentu iegāde + Hydrogenii peroxidum + Medikamentu iegāde supplies none @@ -49459,7 +50325,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -49487,8 +50353,8 @@ price - Cena - Cena + Cena + Cena @@ -49499,7 +50365,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -49522,8 +50388,8 @@ R1S 2023/17-IEP127 - E vitamīna acetāts, bišu vasks - Medikamentu iegāde + E vitamīna acetāts, bišu vasks + Medikamentu iegāde supplies none @@ -49539,7 +50405,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -49567,8 +50433,8 @@ price - Cena - Cena + Cena + Cena @@ -49579,7 +50445,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -49602,8 +50468,8 @@ R1S 2023/17-IEP128 - Desmopressinum - Medikamentu iegāde + Desmopressinum + Medikamentu iegāde supplies none @@ -49619,7 +50485,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -49647,8 +50513,8 @@ price - Cena - Cena + Cena + Cena @@ -49659,7 +50525,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -49682,8 +50548,8 @@ R1S 2023/17-IEP129 - Oxytocinumum - Medikamentu iegāde + Oxytocinumum + Medikamentu iegāde supplies none @@ -49699,7 +50565,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -49727,8 +50593,8 @@ price - Cena - Cena + Cena + Cena @@ -49739,7 +50605,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -49762,8 +50628,8 @@ R1S 2023/17-IEP130 - Octreotidum - Medikamentu iegāde + Octreotidum + Medikamentu iegāde supplies none @@ -49779,7 +50645,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -49807,8 +50673,8 @@ price - Cena - Cena + Cena + Cena @@ -49819,7 +50685,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -49842,8 +50708,8 @@ R1S 2023/17-IEP131 - Dexamethasonum - Medikamentu iegāde + Dexamethasonum + Medikamentu iegāde supplies none @@ -49859,7 +50725,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -49887,8 +50753,8 @@ price - Cena - Cena + Cena + Cena @@ -49899,7 +50765,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -49922,8 +50788,8 @@ R1S 2023/17-IEP132 - Dexamethasonum - Medikamentu iegāde + Dexamethasonum + Medikamentu iegāde supplies none @@ -49939,7 +50805,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -49967,8 +50833,8 @@ price - Cena - Cena + Cena + Cena @@ -49979,7 +50845,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -50002,8 +50868,8 @@ R1S 2023/17-IEP133 - Methylprednisoloni acetas - Medikamentu iegāde + Methylprednisoloni acetas + Medikamentu iegāde supplies none @@ -50019,7 +50885,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -50047,8 +50913,8 @@ price - Cena - Cena + Cena + Cena @@ -50059,7 +50925,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -50082,8 +50948,8 @@ R1S 2023/17-IEP134 - Methylprednisolonum - Medikamentu iegāde + Methylprednisolonum + Medikamentu iegāde supplies none @@ -50099,7 +50965,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -50127,8 +50993,8 @@ price - Cena - Cena + Cena + Cena @@ -50139,7 +51005,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -50162,8 +51028,8 @@ R1S 2023/17-IEP135 - Methylprednisolonum - Medikamentu iegāde + Methylprednisolonum + Medikamentu iegāde supplies none @@ -50179,7 +51045,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -50207,8 +51073,8 @@ price - Cena - Cena + Cena + Cena @@ -50219,7 +51085,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -50242,8 +51108,8 @@ R1S 2023/17-IEP136 - Prednisolonum - Medikamentu iegāde + Prednisolonum + Medikamentu iegāde supplies none @@ -50259,7 +51125,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -50287,8 +51153,8 @@ price - Cena - Cena + Cena + Cena @@ -50299,7 +51165,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -50322,8 +51188,8 @@ R1S 2023/17-IEP137 - Hydrocortisonum - Medikamentu iegāde + Hydrocortisonum + Medikamentu iegāde supplies none @@ -50339,7 +51205,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -50367,8 +51233,8 @@ price - Cena - Cena + Cena + Cena @@ -50379,7 +51245,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -50402,8 +51268,8 @@ R1S 2023/17-IEP138 - Triamcinoloni acetonidum - Medikamentu iegāde + Triamcinoloni acetonidum + Medikamentu iegāde supplies none @@ -50419,7 +51285,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -50447,8 +51313,8 @@ price - Cena - Cena + Cena + Cena @@ -50459,7 +51325,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -50482,8 +51348,8 @@ R1S 2023/17-IEP139 - Thiamazolum - Medikamentu iegāde + Thiamazolum + Medikamentu iegāde supplies none @@ -50499,7 +51365,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -50527,8 +51393,8 @@ price - Cena - Cena + Cena + Cena @@ -50539,7 +51405,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -50562,8 +51428,8 @@ R1S 2023/17-IEP140 - Doxycyclinum - Medikamentu iegāde + Doxycyclinum + Medikamentu iegāde supplies none @@ -50579,7 +51445,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -50607,8 +51473,8 @@ price - Cena - Cena + Cena + Cena @@ -50619,7 +51485,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -50642,8 +51508,8 @@ R1S 2023/17-IEP141 - Amoxicillinum - Medikamentu iegāde + Amoxicillinum + Medikamentu iegāde supplies none @@ -50659,7 +51525,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -50687,8 +51553,8 @@ price - Cena - Cena + Cena + Cena @@ -50699,7 +51565,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -50722,8 +51588,8 @@ R1S 2023/17-IEP142 - Benzylpencillinum - Medikamentu iegāde + Benzylpencillinum + Medikamentu iegāde supplies none @@ -50739,7 +51605,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -50767,8 +51633,8 @@ price - Cena - Cena + Cena + Cena @@ -50779,7 +51645,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -50802,8 +51668,8 @@ R1S 2023/17-IEP143 - Amoxicillinum / Acidum clavulanicum - Medikamentu iegāde + Amoxicillinum / Acidum clavulanicum + Medikamentu iegāde supplies none @@ -50819,7 +51685,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -50847,8 +51713,8 @@ price - Cena - Cena + Cena + Cena @@ -50859,7 +51725,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -50882,8 +51748,8 @@ R1S 2023/17-IEP144 - Piperacillinum / Tazobactamum - Medikamentu iegāde + Piperacillinum / Tazobactamum + Medikamentu iegāde supplies none @@ -50899,7 +51765,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -50927,8 +51793,8 @@ price - Cena - Cena + Cena + Cena @@ -50939,7 +51805,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -50962,8 +51828,8 @@ R1S 2023/17-IEP145 - Cefazolinum - Medikamentu iegāde + Cefazolinum + Medikamentu iegāde supplies none @@ -50979,7 +51845,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -51007,8 +51873,8 @@ price - Cena - Cena + Cena + Cena @@ -51019,7 +51885,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -51042,8 +51908,8 @@ R1S 2023/17-IEP146 - Ceftriaxonum - Medikamentu iegāde + Ceftriaxonum + Medikamentu iegāde supplies none @@ -51059,7 +51925,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -51087,8 +51953,8 @@ price - Cena - Cena + Cena + Cena @@ -51099,7 +51965,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -51122,8 +51988,8 @@ R1S 2023/17-IEP147 - Imipenemum / Cilastatinum - Medikamentu iegāde + Imipenemum / Cilastatinum + Medikamentu iegāde supplies none @@ -51139,7 +52005,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -51167,8 +52033,8 @@ price - Cena - Cena + Cena + Cena @@ -51179,7 +52045,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -51202,8 +52068,8 @@ R1S 2023/17-IEP148 - Sulfamethoxazolum, Trimethoprimum - Medikamentu iegāde + Sulfamethoxazolum, Trimethoprimum + Medikamentu iegāde supplies none @@ -51219,7 +52085,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -51247,8 +52113,8 @@ price - Cena - Cena + Cena + Cena @@ -51259,7 +52125,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -51282,8 +52148,8 @@ R1S 2023/17-IEP149 - Sulfamethoxazolum / Trimethoprimum - Medikamentu iegāde + Sulfamethoxazolum / Trimethoprimum + Medikamentu iegāde supplies none @@ -51299,7 +52165,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -51327,8 +52193,8 @@ price - Cena - Cena + Cena + Cena @@ -51339,7 +52205,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -51362,8 +52228,8 @@ R1S 2023/17-IEP150 - Erythromycinum - Medikamentu iegāde + Erythromycinum + Medikamentu iegāde supplies none @@ -51379,7 +52245,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -51407,8 +52273,8 @@ price - Cena - Cena + Cena + Cena @@ -51419,7 +52285,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -51442,8 +52308,8 @@ R1S 2023/17-IEP151 - Erythromycinum - Medikamentu iegāde + Erythromycinum + Medikamentu iegāde supplies none @@ -51459,7 +52325,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -51487,8 +52353,8 @@ price - Cena - Cena + Cena + Cena @@ -51499,7 +52365,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -51522,8 +52388,8 @@ R1S 2023/17-IEP152 - Erythromycinum - Medikamentu iegāde + Erythromycinum + Medikamentu iegāde supplies none @@ -51539,7 +52405,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -51567,8 +52433,8 @@ price - Cena - Cena + Cena + Cena @@ -51579,7 +52445,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -51602,8 +52468,8 @@ R1S 2023/17-IEP153 - Gentamicinum - Medikamentu iegāde + Gentamicinum + Medikamentu iegāde supplies none @@ -51619,7 +52485,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -51647,8 +52513,8 @@ price - Cena - Cena + Cena + Cena @@ -51659,7 +52525,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -51682,8 +52548,8 @@ R1S 2023/17-IEP154 - Ciprofloxacinum - Medikamentu iegāde + Ciprofloxacinum + Medikamentu iegāde supplies none @@ -51699,7 +52565,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -51727,8 +52593,8 @@ price - Cena - Cena + Cena + Cena @@ -51739,7 +52605,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -51762,8 +52628,8 @@ R1S 2023/17-IEP155 - Ciprofloxacinum - Medikamentu iegāde + Ciprofloxacinum + Medikamentu iegāde supplies none @@ -51779,7 +52645,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -51807,8 +52673,8 @@ price - Cena - Cena + Cena + Cena @@ -51819,7 +52685,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -51842,8 +52708,8 @@ R1S 2023/17-IEP156 - Ciprofloxacinum - Medikamentu iegāde + Ciprofloxacinum + Medikamentu iegāde supplies none @@ -51859,7 +52725,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -51887,8 +52753,8 @@ price - Cena - Cena + Cena + Cena @@ -51899,7 +52765,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -51922,8 +52788,8 @@ R1S 2023/17-IEP157 - Metronidazolum - Medikamentu iegāde + Metronidazolum + Medikamentu iegāde supplies none @@ -51939,7 +52805,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -51967,8 +52833,8 @@ price - Cena - Cena + Cena + Cena @@ -51979,7 +52845,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -52002,8 +52868,8 @@ R1S 2023/17-IEP158 - Furaginum solubile - Medikamentu iegāde + Furaginum solubile + Medikamentu iegāde supplies none @@ -52019,7 +52885,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -52047,8 +52913,8 @@ price - Cena - Cena + Cena + Cena @@ -52059,7 +52925,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -52082,8 +52948,8 @@ R1S 2023/17-IEP159 - Fluconazolum - Medikamentu iegāde + Fluconazolum + Medikamentu iegāde supplies none @@ -52099,7 +52965,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -52127,8 +52993,8 @@ price - Cena - Cena + Cena + Cena @@ -52139,7 +53005,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -52162,8 +53028,8 @@ R1S 2023/17-IEP160 - Vaccinum encephalitidis ixodibus advectae inactivatum - Medikamentu iegāde + Vaccinum encephalitidis ixodibus advectae inactivatum + Medikamentu iegāde supplies none @@ -52179,7 +53045,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -52207,8 +53073,8 @@ price - Cena - Cena + Cena + Cena @@ -52219,7 +53085,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -52242,8 +53108,8 @@ R1S 2023/17-IEP161 - Vaccinum encephalitidis ixodibus advectae inactivatum - Medikamentu iegāde + Vaccinum encephalitidis ixodibus advectae inactivatum + Medikamentu iegāde supplies none @@ -52259,7 +53125,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -52287,8 +53153,8 @@ price - Cena - Cena + Cena + Cena @@ -52299,7 +53165,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -52322,8 +53188,8 @@ R1S 2023/17-IEP162 - Vaccinum influenzae inactivatum ex corticis antigeniis praeparatum - Medikamentu iegāde + Vaccinum influenzae inactivatum ex corticis antigeniis praeparatum + Medikamentu iegāde supplies none @@ -52339,7 +53205,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -52367,8 +53233,8 @@ price - Cena - Cena + Cena + Cena @@ -52379,7 +53245,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -52402,8 +53268,8 @@ R1S 2023/17-IEP163 - Viri hepatitidis A inactivatum - Medikamentu iegāde + Viri hepatitidis A inactivatum + Medikamentu iegāde supplies none @@ -52419,7 +53285,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -52447,8 +53313,8 @@ price - Cena - Cena + Cena + Cena @@ -52459,7 +53325,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -52482,8 +53348,8 @@ R1S 2023/17-IEP164 - Vaccinum hepatitidis A inactivatum adsorbatum - Medikamentu iegāde + Vaccinum hepatitidis A inactivatum adsorbatum + Medikamentu iegāde supplies none @@ -52499,7 +53365,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -52527,8 +53393,8 @@ price - Cena - Cena + Cena + Cena @@ -52539,7 +53405,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -52562,8 +53428,8 @@ R1S 2023/17-IEP165 - Vaccinum hepatitidis B (ADNr) - Medikamentu iegāde + Vaccinum hepatitidis B (ADNr) + Medikamentu iegāde supplies none @@ -52579,7 +53445,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -52607,8 +53473,8 @@ price - Cena - Cena + Cena + Cena @@ -52619,7 +53485,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -52642,8 +53508,8 @@ R1S 2023/17-IEP166 - Vaccinum papillomaviri humani 9-valent, (recombinantum, adsorbatum) - Medikamentu iegāde + Vaccinum papillomaviri humani 9-valent, (recombinantum, adsorbatum) + Medikamentu iegāde supplies none @@ -52659,7 +53525,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -52687,8 +53553,8 @@ price - Cena - Cena + Cena + Cena @@ -52699,7 +53565,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -52722,8 +53588,8 @@ R1S 2023/17-IEP167 - Vaccinum diphtheriae, tetani, pertussis sine cellulis ex elementis praeparatum et poliomyelitidis inactivatum adsorbatum - Medikamentu iegāde + Vaccinum diphtheriae, tetani, pertussis sine cellulis ex elementis praeparatum et poliomyelitidis inactivatum adsorbatum + Medikamentu iegāde supplies none @@ -52739,7 +53605,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -52767,8 +53633,8 @@ price - Cena - Cena + Cena + Cena @@ -52779,7 +53645,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -52802,8 +53668,8 @@ R1S 2023/17-IEP168 - Vaccinum pneumococcale polysaccharidicum coniugatum adsorbatum - Medikamentu iegāde + Vaccinum pneumococcale polysaccharidicum coniugatum adsorbatum + Medikamentu iegāde supplies none @@ -52819,7 +53685,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -52847,8 +53713,8 @@ price - Cena - Cena + Cena + Cena @@ -52859,7 +53725,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -52882,8 +53748,8 @@ R1S 2023/17-IEP169 - Vaccinum hepatitidis A inactivatum et hepatitidis B (ADNr) adsorbatum - Medikamentu iegāde + Vaccinum hepatitidis A inactivatum et hepatitidis B (ADNr) adsorbatum + Medikamentu iegāde supplies none @@ -52899,7 +53765,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -52927,8 +53793,8 @@ price - Cena - Cena + Cena + Cena @@ -52939,7 +53805,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -52962,8 +53828,8 @@ R1S 2023/17-IEP170 - Viri rabiei inactivatum - Medikamentu iegāde + Viri rabiei inactivatum + Medikamentu iegāde supplies none @@ -52979,7 +53845,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -53007,8 +53873,8 @@ price - Cena - Cena + Cena + Cena @@ -53019,7 +53885,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -53042,8 +53908,8 @@ R1S 2023/17-IEP171 - Vaccinum diphtheriae et tetani adsorbatum - Medikamentu iegāde + Vaccinum diphtheriae et tetani adsorbatum + Medikamentu iegāde supplies none @@ -53059,7 +53925,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -53087,8 +53953,8 @@ price - Cena - Cena + Cena + Cena @@ -53099,7 +53965,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -53122,8 +53988,8 @@ R1S 2023/17-IEP172 - Vaccinum morbillorum, parotitidis et rubellae vivum - Medikamentu iegāde + Vaccinum morbillorum, parotitidis et rubellae vivum + Medikamentu iegāde supplies none @@ -53139,7 +54005,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -53167,8 +54033,8 @@ price - Cena - Cena + Cena + Cena @@ -53179,7 +54045,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -53202,8 +54068,8 @@ R1S 2023/17-IEP173 - Vaccinum varicellae vivum - Medikamentu iegāde + Vaccinum varicellae vivum + Medikamentu iegāde supplies none @@ -53219,7 +54085,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -53247,8 +54113,8 @@ price - Cena - Cena + Cena + Cena @@ -53259,7 +54125,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -53282,8 +54148,8 @@ R1S 2023/17-IEP174 - Vaccinum diphtheriae, tetani, pertussis sine cellulis ex elementis praeparatum, antigeni-o(-is) minutum, adsorbatum - Medikamentu iegāde + Vaccinum diphtheriae, tetani, pertussis sine cellulis ex elementis praeparatum, antigeni-o(-is) minutum, adsorbatum + Medikamentu iegāde supplies none @@ -53299,7 +54165,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -53327,8 +54193,8 @@ price - Cena - Cena + Cena + Cena @@ -53339,7 +54205,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -53362,8 +54228,8 @@ R1S 2023/17-IEP175 - Vaccinum rotaviri vivum perorale - Medikamentu iegāde + Vaccinum rotaviri vivum perorale + Medikamentu iegāde supplies none @@ -53379,7 +54245,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -53407,8 +54273,8 @@ price - Cena - Cena + Cena + Cena @@ -53419,7 +54285,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -53442,8 +54308,8 @@ R1S 2023/17-IEP176 - Methotrexatum - Medikamentu iegāde + Methotrexatum + Medikamentu iegāde supplies none @@ -53459,7 +54325,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -53487,8 +54353,8 @@ price - Cena - Cena + Cena + Cena @@ -53499,7 +54365,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -53522,8 +54388,8 @@ R1S 2023/17-IEP177 - Mitomycinum - Medikamentu iegāde + Mitomycinum + Medikamentu iegāde supplies none @@ -53539,7 +54405,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -53567,8 +54433,8 @@ price - Cena - Cena + Cena + Cena @@ -53579,7 +54445,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -53602,8 +54468,8 @@ R1S 2023/17-IEP178 - Doxorubicinum - Medikamentu iegāde + Doxorubicinum + Medikamentu iegāde supplies none @@ -53619,7 +54485,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -53647,8 +54513,8 @@ price - Cena - Cena + Cena + Cena @@ -53659,7 +54525,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -53682,8 +54548,8 @@ R1S 2023/17-IEP179 - Diclofenacum natrium - Medikamentu iegāde + Diclofenacum natrium + Medikamentu iegāde supplies none @@ -53699,7 +54565,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -53727,8 +54593,8 @@ price - Cena - Cena + Cena + Cena @@ -53739,7 +54605,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -53762,8 +54628,8 @@ R1S 2023/17-IEP180 - Diclofenacum natrium - Medikamentu iegāde + Diclofenacum natrium + Medikamentu iegāde supplies none @@ -53779,7 +54645,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -53807,8 +54673,8 @@ price - Cena - Cena + Cena + Cena @@ -53819,7 +54685,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -53842,8 +54708,8 @@ R1S 2023/17-IEP181 - Diclofenacum natrium - Medikamentu iegāde + Diclofenacum natrium + Medikamentu iegāde supplies none @@ -53859,7 +54725,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -53887,8 +54753,8 @@ price - Cena - Cena + Cena + Cena @@ -53899,7 +54765,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -53922,8 +54788,8 @@ R1S 2023/17-IEP182 - Diclofenacum natrium - Medikamentu iegāde + Diclofenacum natrium + Medikamentu iegāde supplies none @@ -53939,7 +54805,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -53967,8 +54833,8 @@ price - Cena - Cena + Cena + Cena @@ -53979,7 +54845,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -54002,8 +54868,8 @@ R1S 2023/17-IEP183 - Ketorolaci trometamolum - Medikamentu iegāde + Ketorolaci trometamolum + Medikamentu iegāde supplies none @@ -54019,7 +54885,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -54047,8 +54913,8 @@ price - Cena - Cena + Cena + Cena @@ -54059,7 +54925,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -54082,8 +54948,8 @@ R1S 2023/17-IEP184 - Ibuprofenum - Medikamentu iegāde + Ibuprofenum + Medikamentu iegāde supplies none @@ -54099,7 +54965,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -54127,8 +54993,8 @@ price - Cena - Cena + Cena + Cena @@ -54139,7 +55005,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -54162,8 +55028,8 @@ R1S 2023/17-IEP185 - Dexketoprofenum - Medikamentu iegāde + Dexketoprofenum + Medikamentu iegāde supplies none @@ -54179,7 +55045,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -54207,8 +55073,8 @@ price - Cena - Cena + Cena + Cena @@ -54219,7 +55085,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -54242,8 +55108,8 @@ R1S 2023/17-IEP186 - Dexketoprofenum - Medikamentu iegāde + Dexketoprofenum + Medikamentu iegāde supplies none @@ -54259,7 +55125,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -54287,8 +55153,8 @@ price - Cena - Cena + Cena + Cena @@ -54299,7 +55165,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -54322,8 +55188,8 @@ R1S 2023/17-IEP187 - Etoricoxibum - Medikamentu iegāde + Etoricoxibum + Medikamentu iegāde supplies none @@ -54339,7 +55205,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -54367,8 +55233,8 @@ price - Cena - Cena + Cena + Cena @@ -54379,7 +55245,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -54402,8 +55268,8 @@ R1S 2023/17-IEP188 - Suxamethonii chloridum - Medikamentu iegāde + Suxamethonii chloridum + Medikamentu iegāde supplies none @@ -54419,7 +55285,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -54447,8 +55313,8 @@ price - Cena - Cena + Cena + Cena @@ -54459,7 +55325,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -54482,8 +55348,8 @@ R1S 2023/17-IEP189 - Atracurii besilas - Medikamentu iegāde + Atracurii besilas + Medikamentu iegāde supplies none @@ -54499,7 +55365,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -54527,8 +55393,8 @@ price - Cena - Cena + Cena + Cena @@ -54539,7 +55405,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -54562,8 +55428,8 @@ R1S 2023/17-IEP190 - Atracurii besilas - Medikamentu iegāde + Atracurii besilas + Medikamentu iegāde supplies none @@ -54579,7 +55445,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -54607,8 +55473,8 @@ price - Cena - Cena + Cena + Cena @@ -54619,7 +55485,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -54642,8 +55508,8 @@ R1S 2023/17-IEP191 - Mivacurium - Medikamentu iegāde + Mivacurium + Medikamentu iegāde supplies none @@ -54659,7 +55525,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -54687,8 +55553,8 @@ price - Cena - Cena + Cena + Cena @@ -54699,7 +55565,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -54722,8 +55588,8 @@ R1S 2023/17-IEP192 - Cisatracurium - Medikamentu iegāde + Cisatracurium + Medikamentu iegāde supplies none @@ -54739,7 +55605,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -54767,8 +55633,8 @@ price - Cena - Cena + Cena + Cena @@ -54779,7 +55645,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -54802,8 +55668,8 @@ R1S 2023/17-IEP193 - Toxinum A Clostridii botulini haemagglutininum multiplex - Medikamentu iegāde + Toxinum A Clostridii botulini haemagglutininum multiplex + Medikamentu iegāde supplies none @@ -54819,7 +55685,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -54847,8 +55713,8 @@ price - Cena - Cena + Cena + Cena @@ -54859,7 +55725,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -54882,8 +55748,8 @@ R1S 2023/17-IEP194 - Tizanidinum - Medikamentu iegāde + Tizanidinum + Medikamentu iegāde supplies none @@ -54899,7 +55765,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -54927,8 +55793,8 @@ price - Cena - Cena + Cena + Cena @@ -54939,7 +55805,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -54962,8 +55828,8 @@ R1S 2023/17-IEP195 - Tolperisonum - Medikamentu iegāde + Tolperisonum + Medikamentu iegāde supplies none @@ -54979,7 +55845,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -55007,8 +55873,8 @@ price - Cena - Cena + Cena + Cena @@ -55019,7 +55885,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -55042,8 +55908,8 @@ R1S 2023/17-IEP196 - Sevofluranum - Medikamentu iegāde + Sevofluranum + Medikamentu iegāde supplies none @@ -55059,7 +55925,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -55087,8 +55953,8 @@ price - Cena - Cena + Cena + Cena @@ -55099,7 +55965,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -55122,8 +55988,8 @@ R1S 2023/17-IEP197 - Thiopentalum natricum - Medikamentu iegāde + Thiopentalum natricum + Medikamentu iegāde supplies none @@ -55139,7 +56005,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -55167,8 +56033,8 @@ price - Cena - Cena + Cena + Cena @@ -55179,7 +56045,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -55202,8 +56068,8 @@ R1S 2023/17-IEP198 - Natrii oxybutyras - Medikamentu iegāde + Natrii oxybutyras + Medikamentu iegāde supplies none @@ -55219,7 +56085,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -55247,8 +56113,8 @@ price - Cena - Cena + Cena + Cena @@ -55259,7 +56125,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -55282,8 +56148,8 @@ R1S 2023/17-IEP199 - Ketamini hydrochloridum - Medikamentu iegāde + Ketamini hydrochloridum + Medikamentu iegāde supplies none @@ -55299,7 +56165,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -55327,8 +56193,8 @@ price - Cena - Cena + Cena + Cena @@ -55339,7 +56205,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -55362,8 +56228,8 @@ R1S 2023/17-IEP200 - Etomidatum - Medikamentu iegāde + Etomidatum + Medikamentu iegāde supplies none @@ -55379,7 +56245,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -55407,8 +56273,8 @@ price - Cena - Cena + Cena + Cena @@ -55419,7 +56285,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -55442,8 +56308,8 @@ R1S 2023/17-IEP201 - Propofolum - Medikamentu iegāde + Propofolum + Medikamentu iegāde supplies none @@ -55459,7 +56325,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -55487,8 +56353,8 @@ price - Cena - Cena + Cena + Cena @@ -55499,7 +56365,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -55522,8 +56388,8 @@ R1S 2023/17-IEP202 - Propofolum - Medikamentu iegāde + Propofolum + Medikamentu iegāde supplies none @@ -55539,7 +56405,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -55567,8 +56433,8 @@ price - Cena - Cena + Cena + Cena @@ -55579,7 +56445,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -55602,8 +56468,8 @@ R1S 2023/17-IEP203 - Bupivacaini hydrochloridum - Medikamentu iegāde + Bupivacaini hydrochloridum + Medikamentu iegāde supplies none @@ -55619,7 +56485,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -55647,8 +56513,8 @@ price - Cena - Cena + Cena + Cena @@ -55659,7 +56525,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -55682,8 +56548,8 @@ R1S 2023/17-IEP204 - Bupivacaini hydrochloridum - Medikamentu iegāde + Bupivacaini hydrochloridum + Medikamentu iegāde supplies none @@ -55699,7 +56565,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -55727,8 +56593,8 @@ price - Cena - Cena + Cena + Cena @@ -55739,7 +56605,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -55762,8 +56628,8 @@ R1S 2023/17-IEP205 - Bupivacaini hydrochloridum - Medikamentu iegāde + Bupivacaini hydrochloridum + Medikamentu iegāde supplies none @@ -55779,7 +56645,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -55807,8 +56673,8 @@ price - Cena - Cena + Cena + Cena @@ -55819,7 +56685,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -55842,8 +56708,8 @@ R1S 2023/17-IEP206 - Ropivacaini hydrochloridum - Medikamentu iegāde + Ropivacaini hydrochloridum + Medikamentu iegāde supplies none @@ -55859,7 +56725,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -55887,8 +56753,8 @@ price - Cena - Cena + Cena + Cena @@ -55899,7 +56765,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -55922,8 +56788,8 @@ R1S 2023/17-IEP207 - Lidocaini hydrochloridum - Medikamentu iegāde + Lidocaini hydrochloridum + Medikamentu iegāde supplies none @@ -55939,7 +56805,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -55967,8 +56833,8 @@ price - Cena - Cena + Cena + Cena @@ -55979,7 +56845,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -56002,8 +56868,8 @@ R1S 2023/17-IEP208 - Lidocaini hydrochloridum - Medikamentu iegāde + Lidocaini hydrochloridum + Medikamentu iegāde supplies none @@ -56019,7 +56885,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -56047,8 +56913,8 @@ price - Cena - Cena + Cena + Cena @@ -56059,7 +56925,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -56082,8 +56948,8 @@ R1S 2023/17-IEP209 - Lidocaini hydrochloridum, Chlorhexidinum - Medikamentu iegāde + Lidocaini hydrochloridum, Chlorhexidinum + Medikamentu iegāde supplies none @@ -56099,7 +56965,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -56127,8 +56993,8 @@ price - Cena - Cena + Cena + Cena @@ -56139,7 +57005,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -56162,8 +57028,8 @@ R1S 2023/17-IEP210 - Prilocainum, Lidocainum - Medikamentu iegāde + Prilocainum, Lidocainum + Medikamentu iegāde supplies none @@ -56179,7 +57045,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -56207,8 +57073,8 @@ price - Cena - Cena + Cena + Cena @@ -56219,7 +57085,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -56242,8 +57108,8 @@ R1S 2023/17-IEP211 - Morphini hydrochloridum - Medikamentu iegāde + Morphini hydrochloridum + Medikamentu iegāde supplies none @@ -56259,7 +57125,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -56287,8 +57153,8 @@ price - Cena - Cena + Cena + Cena @@ -56299,7 +57165,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -56322,8 +57188,8 @@ R1S 2023/17-IEP212 - Fentanylum - Medikamentu iegāde + Fentanylum + Medikamentu iegāde supplies none @@ -56339,7 +57205,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -56367,8 +57233,8 @@ price - Cena - Cena + Cena + Cena @@ -56379,7 +57245,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -56402,8 +57268,8 @@ R1S 2023/17-IEP213 - Trimeperidini hydrochloridum - Medikamentu iegāde + Trimeperidini hydrochloridum + Medikamentu iegāde supplies none @@ -56419,7 +57285,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -56447,8 +57313,8 @@ price - Cena - Cena + Cena + Cena @@ -56459,7 +57325,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -56482,8 +57348,8 @@ R1S 2023/17-IEP214 - Tramadoli hydrochloridum - Medikamentu iegāde + Tramadoli hydrochloridum + Medikamentu iegāde supplies none @@ -56499,7 +57365,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -56527,8 +57393,8 @@ price - Cena - Cena + Cena + Cena @@ -56539,7 +57405,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -56562,8 +57428,8 @@ R1S 2023/17-IEP215 - Tramadoli hydrochloridum - Medikamentu iegāde + Tramadoli hydrochloridum + Medikamentu iegāde supplies none @@ -56579,7 +57445,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -56607,8 +57473,8 @@ price - Cena - Cena + Cena + Cena @@ -56619,7 +57485,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -56642,8 +57508,8 @@ R1S 2023/17-IEP216 - Tramadoli hydrochloridum, Dexketoprofenum - Medikamentu iegāde + Tramadoli hydrochloridum, Dexketoprofenum + Medikamentu iegāde supplies none @@ -56659,7 +57525,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -56687,8 +57553,8 @@ price - Cena - Cena + Cena + Cena @@ -56699,7 +57565,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -56722,8 +57588,8 @@ R1S 2023/17-IEP217 - Paracetamolum, Codeini phosphas hemihydricus - Medikamentu iegāde + Paracetamolum, Codeini phosphas hemihydricus + Medikamentu iegāde supplies none @@ -56739,7 +57605,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -56767,8 +57633,8 @@ price - Cena - Cena + Cena + Cena @@ -56779,7 +57645,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -56802,8 +57668,8 @@ R1S 2023/17-IEP218 - Sumatriptanum - Medikamentu iegāde + Sumatriptanum + Medikamentu iegāde supplies none @@ -56819,7 +57685,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -56847,8 +57713,8 @@ price - Cena - Cena + Cena + Cena @@ -56859,7 +57725,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -56882,8 +57748,8 @@ R1S 2023/17-IEP219 - Metamizolum natricum - Medikamentu iegāde + Metamizolum natricum + Medikamentu iegāde supplies none @@ -56899,7 +57765,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -56927,8 +57793,8 @@ price - Cena - Cena + Cena + Cena @@ -56939,7 +57805,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -56962,8 +57828,8 @@ R1S 2023/17-IEP220 - Metamizolum natricum - Medikamentu iegāde + Metamizolum natricum + Medikamentu iegāde supplies none @@ -56979,7 +57845,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -57007,8 +57873,8 @@ price - Cena - Cena + Cena + Cena @@ -57019,7 +57885,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -57042,8 +57908,8 @@ R1S 2023/17-IEP221 - Acidum acetylsalicylicum - Medikamentu iegāde + Acidum acetylsalicylicum + Medikamentu iegāde supplies none @@ -57059,7 +57925,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -57087,8 +57953,8 @@ price - Cena - Cena + Cena + Cena @@ -57099,7 +57965,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -57122,8 +57988,8 @@ R1S 2023/17-IEP222 - Paracetamolum - Medikamentu iegāde + Paracetamolum + Medikamentu iegāde supplies none @@ -57139,7 +58005,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -57167,8 +58033,8 @@ price - Cena - Cena + Cena + Cena @@ -57179,7 +58045,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -57202,8 +58068,8 @@ R1S 2023/17-IEP223 - Paracetamolum - Medikamentu iegāde + Paracetamolum + Medikamentu iegāde supplies none @@ -57219,7 +58085,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -57247,8 +58113,8 @@ price - Cena - Cena + Cena + Cena @@ -57259,7 +58125,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -57282,8 +58148,8 @@ R1S 2023/17-IEP224 - Clonazepamum - Medikamentu iegāde + Clonazepamum + Medikamentu iegāde supplies none @@ -57299,7 +58165,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -57327,8 +58193,8 @@ price - Cena - Cena + Cena + Cena @@ -57339,7 +58205,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -57362,8 +58228,8 @@ R1S 2023/17-IEP225 - Gabapentinum - Medikamentu iegāde + Gabapentinum + Medikamentu iegāde supplies none @@ -57379,7 +58245,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -57407,8 +58273,8 @@ price - Cena - Cena + Cena + Cena @@ -57419,7 +58285,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -57442,8 +58308,8 @@ R1S 2023/17-IEP226 - Pregabalinum - Medikamentu iegāde + Pregabalinum + Medikamentu iegāde supplies none @@ -57459,7 +58325,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -57487,8 +58353,8 @@ price - Cena - Cena + Cena + Cena @@ -57499,7 +58365,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -57522,8 +58388,8 @@ R1S 2023/17-IEP227 - Carbamazepinum - Medikamentu iegāde + Carbamazepinum + Medikamentu iegāde supplies none @@ -57539,7 +58405,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -57567,8 +58433,8 @@ price - Cena - Cena + Cena + Cena @@ -57579,7 +58445,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -57602,8 +58468,8 @@ R1S 2023/17-IEP228 - Trihexyphenidylum - Medikamentu iegāde + Trihexyphenidylum + Medikamentu iegāde supplies none @@ -57619,7 +58485,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -57647,8 +58513,8 @@ price - Cena - Cena + Cena + Cena @@ -57659,7 +58525,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -57682,8 +58548,8 @@ R1S 2023/17-IEP229 - Levodopum, Benserazidum - Medikamentu iegāde + Levodopum, Benserazidum + Medikamentu iegāde supplies none @@ -57699,7 +58565,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -57727,8 +58593,8 @@ price - Cena - Cena + Cena + Cena @@ -57739,7 +58605,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -57762,8 +58628,8 @@ R1S 2023/17-IEP230 - Haloperidolum - Medikamentu iegāde + Haloperidolum + Medikamentu iegāde supplies none @@ -57779,7 +58645,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -57807,8 +58673,8 @@ price - Cena - Cena + Cena + Cena @@ -57819,7 +58685,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -57842,8 +58708,8 @@ R1S 2023/17-IEP231 - Haloperidolum - Medikamentu iegāde + Haloperidolum + Medikamentu iegāde supplies none @@ -57859,7 +58725,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -57887,8 +58753,8 @@ price - Cena - Cena + Cena + Cena @@ -57899,7 +58765,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -57922,8 +58788,8 @@ R1S 2023/17-IEP232 - Melperonum - Medikamentu iegāde + Melperonum + Medikamentu iegāde supplies none @@ -57939,7 +58805,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -57967,8 +58833,8 @@ price - Cena - Cena + Cena + Cena @@ -57979,7 +58845,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -58002,8 +58868,8 @@ R1S 2023/17-IEP233 - Droperidolum - Medikamentu iegāde + Droperidolum + Medikamentu iegāde supplies none @@ -58019,7 +58885,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -58047,8 +58913,8 @@ price - Cena - Cena + Cena + Cena @@ -58059,7 +58925,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -58082,8 +58948,8 @@ R1S 2023/17-IEP234 - Diazepamum - Medikamentu iegāde + Diazepamum + Medikamentu iegāde supplies none @@ -58099,7 +58965,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -58127,8 +58993,8 @@ price - Cena - Cena + Cena + Cena @@ -58139,7 +59005,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -58162,8 +59028,8 @@ R1S 2023/17-IEP235 - Diazepamum (iepakojumā tika pa N10 ampulām) - Medikamentu iegāde + Diazepamum (iepakojumā tika pa N10 ampulām) + Medikamentu iegāde supplies none @@ -58179,7 +59045,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -58207,8 +59073,8 @@ price - Cena - Cena + Cena + Cena @@ -58219,7 +59085,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -58242,8 +59108,8 @@ R1S 2023/17-IEP236 - Bromazepamum - Medikamentu iegāde + Bromazepamum + Medikamentu iegāde supplies none @@ -58259,7 +59125,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -58287,8 +59153,8 @@ price - Cena - Cena + Cena + Cena @@ -58299,7 +59165,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -58322,8 +59188,8 @@ R1S 2023/17-IEP237 - Quetiapinum - Medikamentu iegāde + Quetiapinum + Medikamentu iegāde supplies none @@ -58339,7 +59205,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -58367,8 +59233,8 @@ price - Cena - Cena + Cena + Cena @@ -58379,7 +59245,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -58402,8 +59268,8 @@ R1S 2023/17-IEP238 - Midazolamum - Medikamentu iegāde + Midazolamum + Medikamentu iegāde supplies none @@ -58419,7 +59285,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -58447,8 +59313,8 @@ price - Cena - Cena + Cena + Cena @@ -58459,7 +59325,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -58482,8 +59348,8 @@ R1S 2023/17-IEP239 - Midazolamum - Medikamentu iegāde + Midazolamum + Medikamentu iegāde supplies none @@ -58499,7 +59365,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -58527,8 +59393,8 @@ price - Cena - Cena + Cena + Cena @@ -58539,7 +59405,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -58562,8 +59428,8 @@ R1S 2023/17-IEP240 - Chlorprotixenum - Medikamentu iegāde + Chlorprotixenum + Medikamentu iegāde supplies none @@ -58579,7 +59445,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -58607,8 +59473,8 @@ price - Cena - Cena + Cena + Cena @@ -58619,7 +59485,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -58642,8 +59508,8 @@ R1S 2023/17-IEP241 - Amitriptylinum - Medikamentu iegāde + Amitriptylinum + Medikamentu iegāde supplies none @@ -58659,7 +59525,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -58687,8 +59553,8 @@ price - Cena - Cena + Cena + Cena @@ -58699,7 +59565,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -58722,8 +59588,8 @@ R1S 2023/17-IEP242 - Piracetamum - Medikamentu iegāde + Piracetamum + Medikamentu iegāde supplies none @@ -58739,7 +59605,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -58767,8 +59633,8 @@ price - Cena - Cena + Cena + Cena @@ -58779,7 +59645,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -58802,8 +59668,8 @@ R1S 2023/17-IEP243 - Ipidacrinum - Medikamentu iegāde + Ipidacrinum + Medikamentu iegāde supplies none @@ -58819,7 +59685,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -58847,8 +59713,8 @@ price - Cena - Cena + Cena + Cena @@ -58859,7 +59725,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -58882,8 +59748,8 @@ R1S 2023/17-IEP244 - Neostigmini methylsulfas - Medikamentu iegāde + Neostigmini methylsulfas + Medikamentu iegāde supplies none @@ -58899,7 +59765,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -58927,8 +59793,8 @@ price - Cena - Cena + Cena + Cena @@ -58939,7 +59805,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -58962,8 +59828,8 @@ R1S 2023/17-IEP245 - Metronidazolum - Medikamentu iegāde + Metronidazolum + Medikamentu iegāde supplies none @@ -58979,7 +59845,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -59007,8 +59873,8 @@ price - Cena - Cena + Cena + Cena @@ -59019,7 +59885,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -59042,8 +59908,8 @@ R1S 2023/17-IEP246 - Permethrinum - Medikamentu iegāde + Permethrinum + Medikamentu iegāde supplies none @@ -59059,7 +59925,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -59087,8 +59953,8 @@ price - Cena - Cena + Cena + Cena @@ -59099,7 +59965,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -59122,8 +59988,8 @@ R1S 2023/17-IEP247 - Benzylii benzoas - Medikamentu iegāde + Benzylii benzoas + Medikamentu iegāde supplies none @@ -59139,7 +60005,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -59167,8 +60033,8 @@ price - Cena - Cena + Cena + Cena @@ -59179,7 +60045,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -59202,8 +60068,8 @@ R1S 2023/17-IEP248 - Xylomethazolinum - Medikamentu iegāde + Xylomethazolinum + Medikamentu iegāde supplies none @@ -59219,7 +60085,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -59247,8 +60113,8 @@ price - Cena - Cena + Cena + Cena @@ -59259,7 +60125,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -59282,8 +60148,8 @@ R1S 2023/17-IEP249 - Xylomethazolinum - Medikamentu iegāde + Xylomethazolinum + Medikamentu iegāde supplies none @@ -59299,7 +60165,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -59327,8 +60193,8 @@ price - Cena - Cena + Cena + Cena @@ -59339,7 +60205,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -59362,8 +60228,8 @@ R1S 2023/17-IEP250 - Salbutamoli sulfas - Medikamentu iegāde + Salbutamoli sulfas + Medikamentu iegāde supplies none @@ -59379,7 +60245,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -59407,8 +60273,8 @@ price - Cena - Cena + Cena + Cena @@ -59419,7 +60285,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -59442,8 +60308,8 @@ R1S 2023/17-IEP251 - Salbutamolum - Medikamentu iegāde + Salbutamolum + Medikamentu iegāde supplies none @@ -59459,7 +60325,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -59487,8 +60353,8 @@ price - Cena - Cena + Cena + Cena @@ -59499,7 +60365,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -59522,8 +60388,8 @@ R1S 2023/17-IEP252 - Salbutamolum - Medikamentu iegāde + Salbutamolum + Medikamentu iegāde supplies none @@ -59539,7 +60405,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -59567,8 +60433,8 @@ price - Cena - Cena + Cena + Cena @@ -59579,7 +60445,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -59602,8 +60468,8 @@ R1S 2023/17-IEP253 - Ipratropii bromidum, Fenoteroli hydrobromidum - Medikamentu iegāde + Ipratropii bromidum, Fenoteroli hydrobromidum + Medikamentu iegāde supplies none @@ -59619,7 +60485,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -59647,8 +60513,8 @@ price - Cena - Cena + Cena + Cena @@ -59659,7 +60525,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -59682,8 +60548,8 @@ R1S 2023/17-IEP254 - Ephedrini hydrohloridum - Medikamentu iegāde + Ephedrini hydrohloridum + Medikamentu iegāde supplies none @@ -59699,7 +60565,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -59727,8 +60593,8 @@ price - Cena - Cena + Cena + Cena @@ -59739,7 +60605,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -59762,8 +60628,8 @@ R1S 2023/17-IEP255 - Aminophyllinum - Medikamentu iegāde + Aminophyllinum + Medikamentu iegāde supplies none @@ -59779,7 +60645,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -59807,8 +60673,8 @@ price - Cena - Cena + Cena + Cena @@ -59819,7 +60685,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -59842,8 +60708,8 @@ R1S 2023/17-IEP256 - Clemastinum - Medikamentu iegāde + Clemastinum + Medikamentu iegāde supplies none @@ -59859,7 +60725,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -59887,8 +60753,8 @@ price - Cena - Cena + Cena + Cena @@ -59899,7 +60765,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -59922,8 +60788,8 @@ R1S 2023/17-IEP257 - Chloropyraminum - Medikamentu iegāde + Chloropyraminum + Medikamentu iegāde supplies none @@ -59939,7 +60805,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -59967,8 +60833,8 @@ price - Cena - Cena + Cena + Cena @@ -59979,7 +60845,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -60002,8 +60868,8 @@ R1S 2023/17-IEP258 - Chloropyraminum - Medikamentu iegāde + Chloropyraminum + Medikamentu iegāde supplies none @@ -60019,7 +60885,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -60047,8 +60913,8 @@ price - Cena - Cena + Cena + Cena @@ -60059,7 +60925,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -60082,8 +60948,8 @@ R1S 2023/17-IEP259 - Quifenadini hydrochloridum - Medikamentu iegāde + Quifenadini hydrochloridum + Medikamentu iegāde supplies none @@ -60099,7 +60965,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -60127,8 +60993,8 @@ price - Cena - Cena + Cena + Cena @@ -60139,7 +61005,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -60162,8 +61028,8 @@ R1S 2023/17-IEP260 - Solutio Ammoniae concentrata - Medikamentu iegāde + Solutio Ammoniae concentrata + Medikamentu iegāde supplies none @@ -60179,7 +61045,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -60207,8 +61073,8 @@ price - Cena - Cena + Cena + Cena @@ -60219,7 +61085,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -60242,8 +61108,8 @@ R1S 2023/17-IEP261 - Tobramycinum - Medikamentu iegāde + Tobramycinum + Medikamentu iegāde supplies none @@ -60259,7 +61125,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -60287,8 +61153,8 @@ price - Cena - Cena + Cena + Cena @@ -60299,7 +61165,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -60322,8 +61188,8 @@ R1S 2023/17-IEP262 - Tobramycinum - Medikamentu iegāde + Tobramycinum + Medikamentu iegāde supplies none @@ -60339,7 +61205,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -60367,8 +61233,8 @@ price - Cena - Cena + Cena + Cena @@ -60379,7 +61245,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -60402,8 +61268,8 @@ R1S 2023/17-IEP263 - Acetazolamidum - Medikamentu iegāde + Acetazolamidum + Medikamentu iegāde supplies none @@ -60419,7 +61285,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -60447,8 +61313,8 @@ price - Cena - Cena + Cena + Cena @@ -60459,7 +61325,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -60482,8 +61348,8 @@ R1S 2023/17-IEP264 - Moxifloxacinum - Medikamentu iegāde + Moxifloxacinum + Medikamentu iegāde supplies none @@ -60499,7 +61365,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -60527,8 +61393,8 @@ price - Cena - Cena + Cena + Cena @@ -60539,7 +61405,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -60562,8 +61428,8 @@ R1S 2023/17-IEP265 - Diclofenacum Natrium - Medikamentu iegāde + Diclofenacum Natrium + Medikamentu iegāde supplies none @@ -60579,7 +61445,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -60607,8 +61473,8 @@ price - Cena - Cena + Cena + Cena @@ -60619,7 +61485,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -60642,8 +61508,8 @@ R1S 2023/17-IEP266 - Tobramycinum, Dexamethasonum - Medikamentu iegāde + Tobramycinum, Dexamethasonum + Medikamentu iegāde supplies none @@ -60659,7 +61525,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -60687,8 +61553,8 @@ price - Cena - Cena + Cena + Cena @@ -60699,7 +61565,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -60722,8 +61588,8 @@ R1S 2023/17-IEP267 - Tobramycinum, Dexamethasonum - Medikamentu iegāde + Tobramycinum, Dexamethasonum + Medikamentu iegāde supplies none @@ -60739,7 +61605,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -60767,8 +61633,8 @@ price - Cena - Cena + Cena + Cena @@ -60779,7 +61645,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -60802,8 +61668,8 @@ R1S 2023/17-IEP268 - Dexamethasonum, Chloramphenicolum - Medikamentu iegāde + Dexamethasonum, Chloramphenicolum + Medikamentu iegāde supplies none @@ -60819,7 +61685,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -60847,8 +61713,8 @@ price - Cena - Cena + Cena + Cena @@ -60859,7 +61725,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -60882,8 +61748,8 @@ R1S 2023/17-IEP269 - Dexamethasonum, Chloramphenicolum - Medikamentu iegāde + Dexamethasonum, Chloramphenicolum + Medikamentu iegāde supplies none @@ -60899,7 +61765,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -60927,8 +61793,8 @@ price - Cena - Cena + Cena + Cena @@ -60939,7 +61805,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -60962,8 +61828,8 @@ R1S 2023/17-IEP270 - Pilocarpinum - Medikamentu iegāde + Pilocarpinum + Medikamentu iegāde supplies none @@ -60979,7 +61845,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -61007,8 +61873,8 @@ price - Cena - Cena + Cena + Cena @@ -61019,7 +61885,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -61042,8 +61908,8 @@ R1S 2023/17-IEP271 - Timololum - Medikamentu iegāde + Timololum + Medikamentu iegāde supplies none @@ -61059,7 +61925,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -61087,8 +61953,8 @@ price - Cena - Cena + Cena + Cena @@ -61099,7 +61965,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -61122,8 +61988,8 @@ R1S 2023/17-IEP272 - Timololum, Dorzolamidum - Medikamentu iegāde + Timololum, Dorzolamidum + Medikamentu iegāde supplies none @@ -61139,7 +62005,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -61167,8 +62033,8 @@ price - Cena - Cena + Cena + Cena @@ -61179,7 +62045,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -61202,8 +62068,8 @@ R1S 2023/17-IEP273 - Cyclopentolati hydrochloridum - Medikamentu iegāde + Cyclopentolati hydrochloridum + Medikamentu iegāde supplies none @@ -61219,7 +62085,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -61247,8 +62113,8 @@ price - Cena - Cena + Cena + Cena @@ -61259,7 +62125,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -61282,8 +62148,8 @@ R1S 2023/17-IEP274 - Tropicamidum - Medikamentu iegāde + Tropicamidum + Medikamentu iegāde supplies none @@ -61299,7 +62165,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -61327,8 +62193,8 @@ price - Cena - Cena + Cena + Cena @@ -61339,7 +62205,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -61362,8 +62228,8 @@ R1S 2023/17-IEP275 - Phenylephrinum - Medikamentu iegāde + Phenylephrinum + Medikamentu iegāde supplies none @@ -61379,7 +62245,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -61407,8 +62273,8 @@ price - Cena - Cena + Cena + Cena @@ -61419,7 +62285,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -61442,8 +62308,8 @@ R1S 2023/17-IEP276 - Proxymetacaini hydrochloridum - Medikamentu iegāde + Proxymetacaini hydrochloridum + Medikamentu iegāde supplies none @@ -61459,7 +62325,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -61487,8 +62353,8 @@ price - Cena - Cena + Cena + Cena @@ -61499,7 +62365,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -61522,8 +62388,8 @@ R1S 2023/17-IEP277 - Dexpanthenolum - Medikamentu iegāde + Dexpanthenolum + Medikamentu iegāde supplies none @@ -61539,7 +62405,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -61567,8 +62433,8 @@ price - Cena - Cena + Cena + Cena @@ -61579,7 +62445,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -61602,8 +62468,8 @@ R1S 2023/17-IEP278 - Carbomerum - Medikamentu iegāde + Carbomerum + Medikamentu iegāde supplies none @@ -61619,7 +62485,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -61647,8 +62513,8 @@ price - Cena - Cena + Cena + Cena @@ -61659,7 +62525,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -61682,8 +62548,8 @@ R1S 2023/17-IEP279 - Carbachol intaocular solution - Medikamentu iegāde + Carbachol intaocular solution + Medikamentu iegāde supplies none @@ -61699,7 +62565,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -61727,8 +62593,8 @@ price - Cena - Cena + Cena + Cena @@ -61739,7 +62605,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -61762,8 +62628,8 @@ R1S 2023/17-IEP280 - Carbacholin - Medikamentu iegāde + Carbacholin + Medikamentu iegāde supplies none @@ -61779,7 +62645,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -61807,8 +62673,8 @@ price - Cena - Cena + Cena + Cena @@ -61819,7 +62685,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -61842,8 +62708,8 @@ R1S 2023/17-IEP281 - Naloxoni hydrochloridum - Medikamentu iegāde + Naloxoni hydrochloridum + Medikamentu iegāde supplies none @@ -61859,7 +62725,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -61887,8 +62753,8 @@ price - Cena - Cena + Cena + Cena @@ -61899,7 +62765,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -61922,8 +62788,8 @@ R1S 2023/17-IEP282 - Protamini sulfas - Medikamentu iegāde + Protamini sulfas + Medikamentu iegāde supplies none @@ -61939,7 +62805,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -61967,8 +62833,8 @@ price - Cena - Cena + Cena + Cena @@ -61979,7 +62845,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -62002,8 +62868,8 @@ R1S 2023/17-IEP283 - Protamini hydrohloridum - Medikamentu iegāde + Protamini hydrohloridum + Medikamentu iegāde supplies none @@ -62019,7 +62885,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -62047,8 +62913,8 @@ price - Cena - Cena + Cena + Cena @@ -62059,7 +62925,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -62082,8 +62948,8 @@ R1S 2023/17-IEP284 - Natrii thiosulfas - Medikamentu iegāde + Natrii thiosulfas + Medikamentu iegāde supplies none @@ -62099,7 +62965,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -62127,8 +62993,8 @@ price - Cena - Cena + Cena + Cena @@ -62139,7 +63005,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -62162,8 +63028,8 @@ R1S 2023/17-IEP285 - Bleu patente - Medikamentu iegāde + Bleu patente + Medikamentu iegāde supplies none @@ -62179,7 +63045,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -62207,8 +63073,8 @@ price - Cena - Cena + Cena + Cena @@ -62219,7 +63085,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -62242,8 +63108,8 @@ R1S 2023/17-IEP286 - Haemoderivatum deproteinatum sanguinis bovi - Medikamentu iegāde + Haemoderivatum deproteinatum sanguinis bovi + Medikamentu iegāde supplies none @@ -62259,7 +63125,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -62287,8 +63153,8 @@ price - Cena - Cena + Cena + Cena @@ -62299,7 +63165,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -62322,8 +63188,8 @@ R1S 2023/17-IEP287 - Aqua destillata - Medikamentu iegāde + Aqua destillata + Medikamentu iegāde supplies none @@ -62339,7 +63205,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -62367,8 +63233,8 @@ price - Cena - Cena + Cena + Cena @@ -62379,7 +63245,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -62402,8 +63268,8 @@ R1S 2023/17-IEP288 - Aqua destillata - Medikamentu iegāde + Aqua destillata + Medikamentu iegāde supplies none @@ -62419,7 +63285,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -62447,8 +63313,8 @@ price - Cena - Cena + Cena + Cena @@ -62459,7 +63325,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -62482,8 +63348,8 @@ R1S 2023/17-IEP289 - Aqua destillata - Medikamentu iegāde + Aqua destillata + Medikamentu iegāde supplies none @@ -62499,7 +63365,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -62527,8 +63393,8 @@ price - Cena - Cena + Cena + Cena @@ -62539,7 +63405,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -62562,8 +63428,8 @@ R1S 2023/17-IEP290 - Irigācijas šķīdums uroloģ./ginekoloģ.operācijām (ecobag) - Medikamentu iegāde + Irigācijas šķīdums uroloģ./ginekoloģ.operācijām (ecobag) + Medikamentu iegāde supplies none @@ -62579,7 +63445,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -62607,8 +63473,8 @@ price - Cena - Cena + Cena + Cena @@ -62619,7 +63485,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -62642,8 +63508,8 @@ R1S 2023/17-IEP291 - Irigācijas šķīdums uroloģ./ginekoloģ.operācijām (ecobag) - Medikamentu iegāde + Irigācijas šķīdums uroloģ./ginekoloģ.operācijām (ecobag) + Medikamentu iegāde supplies none @@ -62659,7 +63525,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -62687,8 +63553,8 @@ price - Cena - Cena + Cena + Cena @@ -62699,7 +63565,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -62722,8 +63588,8 @@ R1S 2023/17-IEP292 - Iohexolum - Medikamentu iegāde + Iohexolum + Medikamentu iegāde supplies none @@ -62739,7 +63605,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -62767,8 +63633,8 @@ price - Cena - Cena + Cena + Cena @@ -62779,7 +63645,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -62802,8 +63668,8 @@ R1S 2023/17-IEP293 - Iohexolum - Medikamentu iegāde + Iohexolum + Medikamentu iegāde supplies none @@ -62819,7 +63685,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -62847,8 +63713,8 @@ price - Cena - Cena + Cena + Cena @@ -62859,7 +63725,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -62882,8 +63748,8 @@ R1S 2023/17-IEP294 - Iohexolum - Medikamentu iegāde + Iohexolum + Medikamentu iegāde supplies none @@ -62899,7 +63765,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -62927,8 +63793,8 @@ price - Cena - Cena + Cena + Cena @@ -62939,7 +63805,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -62962,8 +63828,8 @@ R1S 2023/17-IEP295 - Iopamidolum - Medikamentu iegāde + Iopamidolum + Medikamentu iegāde supplies none @@ -62979,7 +63845,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -63007,8 +63873,8 @@ price - Cena - Cena + Cena + Cena @@ -63019,7 +63885,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -63042,8 +63908,8 @@ R1S 2023/17-IEP296 - Gadobutrolum - Medikamentu iegāde + Gadobutrolum + Medikamentu iegāde supplies none @@ -63059,7 +63925,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -63087,8 +63953,8 @@ price - Cena - Cena + Cena + Cena @@ -63099,7 +63965,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -63122,8 +63988,8 @@ R1S 2023/17-IEP297 - Gadobutrolum - Medikamentu iegāde + Gadobutrolum + Medikamentu iegāde supplies none @@ -63139,7 +64005,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -63167,8 +64033,8 @@ price - Cena - Cena + Cena + Cena @@ -63179,7 +64045,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -63202,8 +64068,8 @@ R1S 2023/17-IEP298 - Gadobutrolum - Medikamentu iegāde + Gadobutrolum + Medikamentu iegāde supplies none @@ -63219,7 +64085,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -63247,8 +64113,8 @@ price - Cena - Cena + Cena + Cena @@ -63259,7 +64125,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -63282,8 +64148,8 @@ R1S 2023/17-IEP299 - Iopromidum - Medikamentu iegāde + Iopromidum + Medikamentu iegāde supplies none @@ -63299,7 +64165,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -63327,8 +64193,8 @@ price - Cena - Cena + Cena + Cena @@ -63339,7 +64205,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -63362,8 +64228,8 @@ R1S 2023/17-IEP300 - Dinatrii gadoxetas - Medikamentu iegāde + Dinatrii gadoxetas + Medikamentu iegāde supplies none @@ -63379,7 +64245,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -63407,8 +64273,8 @@ price - Cena - Cena + Cena + Cena @@ -63419,7 +64285,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -63442,8 +64308,8 @@ R1S 2023/17-IEP301 - Granulēts aktivēts sorbents (sorbex) - Medikamentu iegāde + Granulēts aktivēts sorbents (sorbex) + Medikamentu iegāde supplies none @@ -63459,7 +64325,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -63487,8 +64353,8 @@ price - Cena - Cena + Cena + Cena @@ -63499,7 +64365,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -63522,8 +64388,8 @@ R1S 2023/17-IEP302 - Aether (iepakojums 250-1000 ml) - Medikamentu iegāde + Aether (iepakojums 250-1000 ml) + Medikamentu iegāde supplies none @@ -63539,7 +64405,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -63567,8 +64433,8 @@ price - Cena - Cena + Cena + Cena @@ -63579,7 +64445,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -63602,8 +64468,8 @@ R1S 2023/17-IEP303 - Spiritus aethylicus 960 - Medikamentu iegāde + Spiritus aethylicus 960 + Medikamentu iegāde supplies none @@ -63619,7 +64485,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -63647,8 +64513,8 @@ price - Cena - Cena + Cena + Cena @@ -63659,7 +64525,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -63682,8 +64548,8 @@ R1S 2023/17-IEP304 - Acidum boricum - Medikamentu iegāde + Acidum boricum + Medikamentu iegāde supplies none @@ -63699,7 +64565,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -63727,8 +64593,8 @@ price - Cena - Cena + Cena + Cena @@ -63739,7 +64605,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -63762,8 +64628,8 @@ R1S 2023/17-IEP305 - Barium sulfas - Medikamentu iegāde + Barium sulfas + Medikamentu iegāde supplies none @@ -63779,7 +64645,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -63807,8 +64673,8 @@ price - Cena - Cena + Cena + Cena @@ -63819,7 +64685,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -63842,8 +64708,8 @@ R1S 2023/17-IEP306 - Acidum aceticum conc.maks. iepakojums līdz 200 ml - Medikamentu iegāde + Acidum aceticum conc.maks. iepakojums līdz 200 ml + Medikamentu iegāde supplies none @@ -63859,7 +64725,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -63887,8 +64753,8 @@ price - Cena - Cena + Cena + Cena @@ -63899,7 +64765,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -63922,8 +64788,8 @@ R1S 2023/17-IEP307 - Acidum hydrochloric. conc.maks. iepak.līdz 100 ml - Medikamentu iegāde + Acidum hydrochloric. conc.maks. iepak.līdz 100 ml + Medikamentu iegāde supplies none @@ -63939,7 +64805,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -63967,8 +64833,8 @@ price - Cena - Cena + Cena + Cena @@ -63979,7 +64845,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -64002,8 +64868,8 @@ R1S 2023/17-IEP308 - Acidum nitotinicum maks. iepak.līdz 20g - Medikamentu iegāde + Acidum nitotinicum maks. iepak.līdz 20g + Medikamentu iegāde supplies none @@ -64019,7 +64885,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -64047,8 +64913,8 @@ price - Cena - Cena + Cena + Cena @@ -64059,7 +64925,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -64082,8 +64948,8 @@ R1S 2023/17-IEP309 - Acidum salicylicum maks. iepak.līdz 1 kg - Medikamentu iegāde + Acidum salicylicum maks. iepak.līdz 1 kg + Medikamentu iegāde supplies none @@ -64099,7 +64965,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -64127,8 +64993,8 @@ price - Cena - Cena + Cena + Cena @@ -64139,7 +65005,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -64162,8 +65028,8 @@ R1S 2023/17-IEP310 - Argenti nitras (maks. iepakojumā 10g-20g) - Medikamentu iegāde + Argenti nitras (maks. iepakojumā 10g-20g) + Medikamentu iegāde supplies none @@ -64179,7 +65045,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -64207,8 +65073,8 @@ price - Cena - Cena + Cena + Cena @@ -64219,7 +65085,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -64242,8 +65108,8 @@ R1S 2023/17-IEP311 - Anaesthesinum maks. iepak. līdz 50g - Medikamentu iegāde + Anaesthesinum maks. iepak. līdz 50g + Medikamentu iegāde supplies none @@ -64259,7 +65125,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -64287,8 +65153,8 @@ price - Cena - Cena + Cena + Cena @@ -64299,7 +65165,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -64322,8 +65188,8 @@ R1S 2023/17-IEP312 - Calcii chloridum maks. iepak. līdz 50g - Medikamentu iegāde + Calcii chloridum maks. iepak. līdz 50g + Medikamentu iegāde supplies none @@ -64339,7 +65205,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -64367,8 +65233,8 @@ price - Cena - Cena + Cena + Cena @@ -64379,7 +65245,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -64402,8 +65268,8 @@ R1S 2023/17-IEP313 - Chlorhexidini digluconas maks. iepak. līdz 1L pudelēs - Medikamentu iegāde + Chlorhexidini digluconas maks. iepak. līdz 1L pudelēs + Medikamentu iegāde supplies none @@ -64419,7 +65285,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -64447,8 +65313,8 @@ price - Cena - Cena + Cena + Cena @@ -64459,7 +65325,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -64482,8 +65348,8 @@ R1S 2023/17-IEP314 - Dermatolum maks. iepak.līdz 1kg - Medikamentu iegāde + Dermatolum maks. iepak.līdz 1kg + Medikamentu iegāde supplies none @@ -64499,7 +65365,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -64527,8 +65393,8 @@ price - Cena - Cena + Cena + Cena @@ -64539,7 +65405,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -64562,8 +65428,8 @@ R1S 2023/17-IEP315 - Dicainum (Tetracainum) (maks. iepakojumā 10g-20g) - Medikamentu iegāde + Dicainum (Tetracainum) (maks. iepakojumā 10g-20g) + Medikamentu iegāde supplies none @@ -64579,7 +65445,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -64607,8 +65473,8 @@ price - Cena - Cena + Cena + Cena @@ -64619,7 +65485,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -64642,8 +65508,8 @@ R1S 2023/17-IEP316 - Extractum Thermopsidis maks. iepak. līdz 100g - Medikamentu iegāde + Extractum Thermopsidis maks. iepak. līdz 100g + Medikamentu iegāde supplies none @@ -64659,7 +65525,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -64687,8 +65553,8 @@ price - Cena - Cena + Cena + Cena @@ -64699,7 +65565,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -64722,8 +65588,8 @@ R1S 2023/17-IEP317 - Euphyllinum maks. iepak. līdz 20g - Medikamentu iegāde + Euphyllinum maks. iepak. līdz 20g + Medikamentu iegāde supplies none @@ -64739,7 +65605,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -64767,8 +65633,8 @@ price - Cena - Cena + Cena + Cena @@ -64779,7 +65645,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -64802,8 +65668,8 @@ R1S 2023/17-IEP318 - Furacillinum maks. iepak. līdz 20g - Medikamentu iegāde + Furacillinum maks. iepak. līdz 20g + Medikamentu iegāde supplies none @@ -64819,7 +65685,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -64847,8 +65713,8 @@ price - Cena - Cena + Cena + Cena @@ -64859,7 +65725,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -64882,8 +65748,8 @@ R1S 2023/17-IEP319 - Formaldehydi (maks. iepakojumā līdz 1,5L pudelēs) - Medikamentu iegāde + Formaldehydi (maks. iepakojumā līdz 1,5L pudelēs) + Medikamentu iegāde supplies none @@ -64899,7 +65765,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -64927,8 +65793,8 @@ price - Cena - Cena + Cena + Cena @@ -64939,7 +65805,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -64962,8 +65828,8 @@ R1S 2023/17-IEP320 - Glycerinum (maks. iepakojumā līz 1.5 L pudelēs) - Medikamentu iegāde + Glycerinum (maks. iepakojumā līz 1.5 L pudelēs) + Medikamentu iegāde supplies none @@ -64979,7 +65845,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -65007,8 +65873,8 @@ price - Cena - Cena + Cena + Cena @@ -65019,7 +65885,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -65042,8 +65908,8 @@ R1S 2023/17-IEP321 - Hydrogeni peroxyidi conc.maks. iepak. 1-5 L pudelēs - Medikamentu iegāde + Hydrogeni peroxyidi conc.maks. iepak. 1-5 L pudelēs + Medikamentu iegāde supplies none @@ -65059,7 +65925,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -65087,8 +65953,8 @@ price - Cena - Cena + Cena + Cena @@ -65099,7 +65965,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -65122,8 +65988,8 @@ R1S 2023/17-IEP322 - Ichthyolum maks. iepak. līdz 1kg - Medikamentu iegāde + Ichthyolum maks. iepak. līdz 1kg + Medikamentu iegāde supplies none @@ -65139,7 +66005,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -65167,8 +66033,8 @@ price - Cena - Cena + Cena + Cena @@ -65179,7 +66045,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -65202,8 +66068,8 @@ R1S 2023/17-IEP323 - Iodoformium maks. iepak. līdz 50g - Medikamentu iegāde + Iodoformium maks. iepak. līdz 50g + Medikamentu iegāde supplies none @@ -65219,7 +66085,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -65247,8 +66113,8 @@ price - Cena - Cena + Cena + Cena @@ -65259,7 +66125,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -65282,8 +66148,8 @@ R1S 2023/17-IEP324 - Kalii iodidi maks. iepak. līdz 50g - Medikamentu iegāde + Kalii iodidi maks. iepak. līdz 50g + Medikamentu iegāde supplies none @@ -65299,7 +66165,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -65327,8 +66193,8 @@ price - Cena - Cena + Cena + Cena @@ -65339,7 +66205,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -65362,8 +66228,8 @@ R1S 2023/17-IEP325 - Lanolinum maks. iepak. līdz 5 kg - Medikamentu iegāde + Lanolinum maks. iepak. līdz 5 kg + Medikamentu iegāde supplies none @@ -65379,7 +66245,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -65407,8 +66273,8 @@ price - Cena - Cena + Cena + Cena @@ -65419,7 +66285,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -65442,8 +66308,8 @@ R1S 2023/17-IEP326 - Laevomycetinum maks. iepak. līdz 20g - Medikamentu iegāde + Laevomycetinum maks. iepak. līdz 20g + Medikamentu iegāde supplies none @@ -65459,7 +66325,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -65487,8 +66353,8 @@ price - Cena - Cena + Cena + Cena @@ -65499,7 +66365,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -65522,8 +66388,8 @@ R1S 2023/17-IEP327 - Methylviolet 1% 50 ml - Medikamentu iegāde + Methylviolet 1% 50 ml + Medikamentu iegāde supplies none @@ -65539,7 +66405,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -65567,8 +66433,8 @@ price - Cena - Cena + Cena + Cena @@ -65579,7 +66445,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -65602,8 +66468,8 @@ R1S 2023/17-IEP328 - Methylviolet 1% 100 ml - Medikamentu iegāde + Methylviolet 1% 100 ml + Medikamentu iegāde supplies none @@ -65619,7 +66485,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -65647,8 +66513,8 @@ price - Cena - Cena + Cena + Cena @@ -65659,7 +66525,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -65682,8 +66548,8 @@ R1S 2023/17-IEP329 - Methylviolet 2% 50 ml - Medikamentu iegāde + Methylviolet 2% 50 ml + Medikamentu iegāde supplies none @@ -65699,7 +66565,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -65727,8 +66593,8 @@ price - Cena - Cena + Cena + Cena @@ -65739,7 +66605,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -65762,8 +66628,8 @@ R1S 2023/17-IEP330 - Methylviolet 2% 100 ml - Medikamentu iegāde + Methylviolet 2% 100 ml + Medikamentu iegāde supplies none @@ -65779,7 +66645,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -65807,8 +66673,8 @@ price - Cena - Cena + Cena + Cena @@ -65819,7 +66685,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -65842,8 +66708,8 @@ R1S 2023/17-IEP331 - Natrii acetas - Medikamentu iegāde + Natrii acetas + Medikamentu iegāde supplies none @@ -65859,7 +66725,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -65887,8 +66753,8 @@ price - Cena - Cena + Cena + Cena @@ -65899,7 +66765,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -65922,8 +66788,8 @@ R1S 2023/17-IEP332 - Natrii benzoas maks. iepak.līdz 1kg - Medikamentu iegāde + Natrii benzoas maks. iepak.līdz 1kg + Medikamentu iegāde supplies none @@ -65939,7 +66805,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -65967,8 +66833,8 @@ price - Cena - Cena + Cena + Cena @@ -65979,7 +66845,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -66002,8 +66868,8 @@ R1S 2023/17-IEP333 - Natrii bromidi maks. iepak.līdz 1kg - Medikamentu iegāde + Natrii bromidi maks. iepak.līdz 1kg + Medikamentu iegāde supplies none @@ -66019,7 +66885,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -66047,8 +66913,8 @@ price - Cena - Cena + Cena + Cena @@ -66059,7 +66925,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -66082,8 +66948,8 @@ R1S 2023/17-IEP334 - Natrii chloridum maks. iepak.līdz 1kg - Medikamentu iegāde + Natrii chloridum maks. iepak.līdz 1kg + Medikamentu iegāde supplies none @@ -66099,7 +66965,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -66127,8 +66993,8 @@ price - Cena - Cena + Cena + Cena @@ -66139,7 +67005,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -66162,8 +67028,8 @@ R1S 2023/17-IEP335 - Natrii hydrocarbonas maks. iepak. līdz 1kg - Medikamentu iegāde + Natrii hydrocarbonas maks. iepak. līdz 1kg + Medikamentu iegāde supplies none @@ -66179,7 +67045,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -66207,8 +67073,8 @@ price - Cena - Cena + Cena + Cena @@ -66219,7 +67085,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -66242,8 +67108,8 @@ R1S 2023/17-IEP336 - Natrii salicylas - Medikamentu iegāde + Natrii salicylas + Medikamentu iegāde supplies none @@ -66259,7 +67125,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -66287,8 +67153,8 @@ price - Cena - Cena + Cena + Cena @@ -66299,7 +67165,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -66322,8 +67188,8 @@ R1S 2023/17-IEP337 - Norsulfasolum - Medikamentu iegāde + Norsulfasolum + Medikamentu iegāde supplies none @@ -66339,7 +67205,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -66367,8 +67233,8 @@ price - Cena - Cena + Cena + Cena @@ -66379,7 +67245,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -66402,8 +67268,8 @@ R1S 2023/17-IEP338 - Novocaini hydrochloridum maks. iepak.līdz 50g - Medikamentu iegāde + Novocaini hydrochloridum maks. iepak.līdz 50g + Medikamentu iegāde supplies none @@ -66419,7 +67285,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -66447,8 +67313,8 @@ price - Cena - Cena + Cena + Cena @@ -66459,7 +67325,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -66482,8 +67348,8 @@ R1S 2023/17-IEP339 - Oleum Helianthis maks. iepak.līdz 5kg - Medikamentu iegāde + Oleum Helianthis maks. iepak.līdz 5kg + Medikamentu iegāde supplies none @@ -66499,7 +67365,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -66527,8 +67393,8 @@ price - Cena - Cena + Cena + Cena @@ -66539,7 +67405,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -66562,8 +67428,8 @@ R1S 2023/17-IEP340 - Oleum Ricini maks. iepak.līdz 1kg - Medikamentu iegāde + Oleum Ricini maks. iepak.līdz 1kg + Medikamentu iegāde supplies none @@ -66579,7 +67445,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -66607,8 +67473,8 @@ price - Cena - Cena + Cena + Cena @@ -66619,7 +67485,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -66642,8 +67508,8 @@ R1S 2023/17-IEP341 - Oleum Vaselini maks. iepak.līdz 1kg - Medikamentu iegāde + Oleum Vaselini maks. iepak.līdz 1kg + Medikamentu iegāde supplies none @@ -66659,7 +67525,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -66687,8 +67553,8 @@ price - Cena - Cena + Cena + Cena @@ -66699,7 +67565,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -66722,8 +67588,8 @@ R1S 2023/17-IEP342 - Oleum Olivarum maks. iepak.līdz 1kg - Medikamentu iegāde + Oleum Olivarum maks. iepak.līdz 1kg + Medikamentu iegāde supplies none @@ -66739,7 +67605,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -66767,8 +67633,8 @@ price - Cena - Cena + Cena + Cena @@ -66779,7 +67645,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -66802,8 +67668,8 @@ R1S 2023/17-IEP343 - Oleum Caryophylli (maks. iepakojumā 10g-30g) - Medikamentu iegāde + Oleum Caryophylli (maks. iepakojumā 10g-30g) + Medikamentu iegāde supplies none @@ -66819,7 +67685,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -66847,8 +67713,8 @@ price - Cena - Cena + Cena + Cena @@ -66859,7 +67725,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -66882,8 +67748,8 @@ R1S 2023/17-IEP344 - Pix liquda Betulae - Medikamentu iegāde + Pix liquda Betulae + Medikamentu iegāde supplies none @@ -66899,7 +67765,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -66927,8 +67793,8 @@ price - Cena - Cena + Cena + Cena @@ -66939,7 +67805,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -66962,8 +67828,8 @@ R1S 2023/17-IEP345 - Streptocidum maks. iepak.līdz 100g - Medikamentu iegāde + Streptocidum maks. iepak.līdz 100g + Medikamentu iegāde supplies none @@ -66979,7 +67845,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -67007,8 +67873,8 @@ price - Cena - Cena + Cena + Cena @@ -67019,7 +67885,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -67042,8 +67908,8 @@ R1S 2023/17-IEP346 - Sulfur praecipitatum maks. iepak.līdz 1kg - Medikamentu iegāde + Sulfur praecipitatum maks. iepak.līdz 1kg + Medikamentu iegāde supplies none @@ -67059,7 +67925,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -67087,8 +67953,8 @@ price - Cena - Cena + Cena + Cena @@ -67099,7 +67965,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -67122,8 +67988,8 @@ R1S 2023/17-IEP347 - Sēra darvas ziede (pix qiquida 50g,sulfuris 50 g,vaselinum 900 g) - Medikamentu iegāde + Sēra darvas ziede (pix qiquida 50g,sulfuris 50 g,vaselinum 900 g) + Medikamentu iegāde supplies none @@ -67139,7 +68005,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -67167,8 +68033,8 @@ price - Cena - Cena + Cena + Cena @@ -67179,7 +68045,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -67202,8 +68068,8 @@ R1S 2023/17-IEP348 - Talcum maks. iepak.līdz 1kg - Medikamentu iegāde + Talcum maks. iepak.līdz 1kg + Medikamentu iegāde supplies none @@ -67219,7 +68085,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -67247,8 +68113,8 @@ price - Cena - Cena + Cena + Cena @@ -67259,7 +68125,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -67282,8 +68148,8 @@ R1S 2023/17-IEP349 - Tinctura Leonuri - Medikamentu iegāde + Tinctura Leonuri + Medikamentu iegāde supplies none @@ -67299,7 +68165,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -67327,8 +68193,8 @@ price - Cena - Cena + Cena + Cena @@ -67339,7 +68205,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -67362,8 +68228,8 @@ R1S 2023/17-IEP350 - Tinctura Valerianae - Medikamentu iegāde + Tinctura Valerianae + Medikamentu iegāde supplies none @@ -67379,7 +68245,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -67407,8 +68273,8 @@ price - Cena - Cena + Cena + Cena @@ -67419,7 +68285,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -67442,8 +68308,8 @@ R1S 2023/17-IEP351 - Trilonum B maks. iepak.līdz 100g - Medikamentu iegāde + Trilonum B maks. iepak.līdz 100g + Medikamentu iegāde supplies none @@ -67459,7 +68325,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -67487,8 +68353,8 @@ price - Cena - Cena + Cena + Cena @@ -67499,7 +68365,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -67522,8 +68388,8 @@ R1S 2023/17-IEP352 - Vaselinum maks. iepak.līdz 5kg - Medikamentu iegāde + Vaselinum maks. iepak.līdz 5kg + Medikamentu iegāde supplies none @@ -67539,7 +68405,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -67567,8 +68433,8 @@ price - Cena - Cena + Cena + Cena @@ -67579,7 +68445,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -67602,8 +68468,8 @@ R1S 2023/17-IEP353 - Xeroformum maks. iepak.līdz 100g - Medikamentu iegāde + Xeroformum maks. iepak.līdz 100g + Medikamentu iegāde supplies none @@ -67619,7 +68485,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -67647,8 +68513,8 @@ price - Cena - Cena + Cena + Cena @@ -67659,7 +68525,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -67682,8 +68548,8 @@ R1S 2023/17-IEP354 - Zinci oxydum maks. iepak.līdz 1kg - Medikamentu iegāde + Zinci oxydum maks. iepak.līdz 1kg + Medikamentu iegāde supplies none @@ -67699,7 +68565,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -67727,8 +68593,8 @@ price - Cena - Cena + Cena + Cena @@ -67739,7 +68605,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -67762,8 +68628,8 @@ R1S 2023/17-IEP355 - Zinci sulfas maks. iepak.līdz 50g - Medikamentu iegāde + Zinci sulfas maks. iepak.līdz 50g + Medikamentu iegāde supplies none @@ -67779,7 +68645,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -67807,8 +68673,8 @@ price - Cena - Cena + Cena + Cena @@ -67819,7 +68685,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -67842,8 +68708,8 @@ R1S 2023/17-IEP356 - Pretaizsvīšanas, pretaprasojuma līdzeklis visu veidu optikas izstrādājumiem, (Ultrastop) - Medikamentu iegāde + Pretaizsvīšanas, pretaprasojuma līdzeklis visu veidu optikas izstrādājumiem, (Ultrastop) + Medikamentu iegāde supplies none @@ -67859,7 +68725,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -67887,8 +68753,8 @@ price - Cena - Cena + Cena + Cena @@ -67899,7 +68765,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -67922,8 +68788,8 @@ 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 + 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 @@ -67939,7 +68805,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -67967,8 +68833,8 @@ price - Cena - Cena + Cena + Cena @@ -67979,7 +68845,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -68002,8 +68868,8 @@ R1S 2023/17-IEP358 - Kastellani liq. - Medikamentu iegāde + Kastellani liq. + Medikamentu iegāde supplies none @@ -68019,7 +68885,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -68047,8 +68913,8 @@ price - Cena - Cena + Cena + Cena @@ -68059,7 +68925,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -68082,8 +68948,8 @@ R1S 2023/17-IEP359 - Kastellani liq. - Medikamentu iegāde + Kastellani liq. + Medikamentu iegāde supplies none @@ -68099,7 +68965,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -68127,8 +68993,8 @@ price - Cena - Cena + Cena + Cena @@ -68139,7 +69005,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -68162,8 +69028,8 @@ R1S 2023/17-IEP360 - Kastellani liq.sine fuxini - Medikamentu iegāde + Kastellani liq.sine fuxini + Medikamentu iegāde supplies none @@ -68179,7 +69045,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -68207,8 +69073,8 @@ price - Cena - Cena + Cena + Cena @@ -68219,7 +69085,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -68242,8 +69108,8 @@ R1S 2023/17-IEP361 - Kastellani liq.sine fuxini - Medikamentu iegāde + Kastellani liq.sine fuxini + Medikamentu iegāde supplies none @@ -68259,7 +69125,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -68287,8 +69153,8 @@ price - Cena - Cena + Cena + Cena @@ -68299,7 +69165,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -68322,8 +69188,8 @@ R1S 2023/17-IEP362 - Flakoni -pudeles zāļu fasēšanai (penicilīna ar gumijas un metāla korķišiem) - Medikamentu iegāde + Flakoni -pudeles zāļu fasēšanai (penicilīna ar gumijas un metāla korķišiem) + Medikamentu iegāde supplies none @@ -68339,7 +69205,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -68367,8 +69233,8 @@ price - Cena - Cena + Cena + Cena @@ -68379,7 +69245,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -68402,8 +69268,8 @@ 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 + Flakoni -pudeles zāļu fasēšanai -tumša stikla ar aizskrūvējamu vāciņu, paplatinātu kaklu. + Medikamentu iegāde supplies none @@ -68419,7 +69285,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -68447,8 +69313,8 @@ price - Cena - Cena + Cena + Cena @@ -68459,7 +69325,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -68482,8 +69348,8 @@ 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 + Flakoni -pudeles zāļu fasēšanai -tumša stikla ar aizskrūvējamu vāciņu, paplatinātu kaklu. + Medikamentu iegāde supplies none @@ -68499,7 +69365,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -68527,8 +69393,8 @@ price - Cena - Cena + Cena + Cena @@ -68539,7 +69405,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -68562,8 +69428,8 @@ 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 + Flakoni -pudeles zāļu fasēšanai -tumša stikla ar aizskrūvējamu vāciņu, paplatinātu kaklu. + Medikamentu iegāde supplies none @@ -68579,7 +69445,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -68607,8 +69473,8 @@ price - Cena - Cena + Cena + Cena @@ -68619,7 +69485,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -68642,8 +69508,8 @@ 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 + Flakoni -pudeles zāļu fasēšanai -tumša stikla ar aizskrūvējamu vāciņu, paplatinātu kaklu. + Medikamentu iegāde supplies none @@ -68659,7 +69525,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -68687,8 +69553,8 @@ price - Cena - Cena + Cena + Cena @@ -68699,7 +69565,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -68722,8 +69588,8 @@ 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 + Flakoni -pudeles zāļu fasēšanai -tumša stikla ar aizskrūvējamu vāciņu, paplatinātu kaklu. + Medikamentu iegāde supplies none @@ -68739,7 +69605,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -68767,8 +69633,8 @@ price - Cena - Cena + Cena + Cena @@ -68779,7 +69645,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -68802,8 +69668,8 @@ 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 + Flakoni -pudeles zāļu fasēšanai -tumša stikla ar aizskrūvējamu vāciņu, paplatinātu kaklu. + Medikamentu iegāde supplies none @@ -68819,7 +69685,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -68847,8 +69713,8 @@ price - Cena - Cena + Cena + Cena @@ -68859,7 +69725,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -68882,8 +69748,8 @@ 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 + Flakoni -pudeles zāļu fasēšanai -tumša stikla ar aizskrūvējamu vāciņu, paplatinātu kaklu. + Medikamentu iegāde supplies none @@ -68899,7 +69765,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -68927,8 +69793,8 @@ price - Cena - Cena + Cena + Cena @@ -68939,7 +69805,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -68962,8 +69828,8 @@ 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 + Flakoni -pudeles zāļu fasēšanai -tumša stikla ar aizskrūvējamu vāciņu, paplatinātu kaklu. + Medikamentu iegāde supplies none @@ -68979,7 +69845,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -69007,8 +69873,8 @@ price - Cena - Cena + Cena + Cena @@ -69019,7 +69885,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -69042,8 +69908,8 @@ R1S 2023/17-IEP371 - Flakoni -pudeles zāļu fasēšanai -tumša stikla ar aizskrūvējamu vāciņu. - Medikamentu iegāde + Flakoni -pudeles zāļu fasēšanai -tumša stikla ar aizskrūvējamu vāciņu. + Medikamentu iegāde supplies none @@ -69059,7 +69925,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -69087,8 +69953,8 @@ price - Cena - Cena + Cena + Cena @@ -69099,7 +69965,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -69122,8 +69988,8 @@ R1S 2023/17-IEP372 - Flakoni -pudeles zāļu fasēšanai -tumša stikla ar aizskrūvējamu vāciņu. - Medikamentu iegāde + Flakoni -pudeles zāļu fasēšanai -tumša stikla ar aizskrūvējamu vāciņu. + Medikamentu iegāde supplies none @@ -69139,7 +70005,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -69167,8 +70033,8 @@ price - Cena - Cena + Cena + Cena @@ -69179,7 +70045,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -69202,8 +70068,8 @@ R1S 2023/17-IEP373 - Flakoni -pudeles zāļu fasēšanai -tumša stikla ar aizskrūvējamu vāciņu. - Medikamentu iegāde + Flakoni -pudeles zāļu fasēšanai -tumša stikla ar aizskrūvējamu vāciņu. + Medikamentu iegāde supplies none @@ -69219,7 +70085,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -69247,8 +70113,8 @@ price - Cena - Cena + Cena + Cena @@ -69259,7 +70125,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -69282,8 +70148,8 @@ R1S 2023/17-IEP374 - Pudeles -stikls flakoni ( ar gumijas un alumīnija vāciņu valcēšanai) - Medikamentu iegāde + Pudeles -stikls flakoni ( ar gumijas un alumīnija vāciņu valcēšanai) + Medikamentu iegāde supplies none @@ -69299,7 +70165,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -69327,8 +70193,8 @@ price - Cena - Cena + Cena + Cena @@ -69339,7 +70205,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -69362,8 +70228,8 @@ R1S 2023/17-IEP375 - Alumīnija vāciņš (valcēšanai) infūzijas pudelēm - Medikamentu iegāde + Alumīnija vāciņš (valcēšanai) infūzijas pudelēm + Medikamentu iegāde supplies none @@ -69379,7 +70245,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -69407,8 +70273,8 @@ price - Cena - Cena + Cena + Cena @@ -69419,7 +70285,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -69442,8 +70308,8 @@ R1S 2023/17-IEP376 - Gumijas aizbāznis infūzijas pudelēm - Medikamentu iegāde + Gumijas aizbāznis infūzijas pudelēm + Medikamentu iegāde supplies none @@ -69459,7 +70325,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -69487,8 +70353,8 @@ price - Cena - Cena + Cena + Cena @@ -69499,7 +70365,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -69522,8 +70388,8 @@ R1S 2023/17-IEP377 - Bankas ziežu fasēšanai-plastmasas (platkakla) ar vāciņiem - Medikamentu iegāde + Bankas ziežu fasēšanai-plastmasas (platkakla) ar vāciņiem + Medikamentu iegāde supplies none @@ -69539,7 +70405,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -69567,8 +70433,8 @@ price - Cena - Cena + Cena + Cena @@ -69579,7 +70445,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -69602,8 +70468,8 @@ R1S 2023/17-IEP378 - Bankas ziežu fasēšanai-plastmasas (platkakla) ar vāciņiem - Medikamentu iegāde + Bankas ziežu fasēšanai-plastmasas (platkakla) ar vāciņiem + Medikamentu iegāde supplies none @@ -69619,7 +70485,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -69647,8 +70513,8 @@ price - Cena - Cena + Cena + Cena @@ -69659,7 +70525,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -69682,8 +70548,8 @@ R1S 2023/17-IEP379 - Bankas ziežu fasēšanai-plastmasas (platkakla) ar vāciņiem - Medikamentu iegāde + Bankas ziežu fasēšanai-plastmasas (platkakla) ar vāciņiem + Medikamentu iegāde supplies none @@ -69699,7 +70565,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -69727,8 +70593,8 @@ price - Cena - Cena + Cena + Cena @@ -69739,7 +70605,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -69762,8 +70628,8 @@ R1S 2023/17-IEP380 - Bankas ziežu fasēšanai-plastmasas (platkakla) ar vāciņiem - Medikamentu iegāde + Bankas ziežu fasēšanai-plastmasas (platkakla) ar vāciņiem + Medikamentu iegāde supplies none @@ -69779,7 +70645,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -69807,8 +70673,8 @@ price - Cena - Cena + Cena + Cena @@ -69819,7 +70685,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -69842,8 +70708,8 @@ R1S 2023/17-IEP381 - Bankas ziežu fasēšanai-plastmasas (platkakla) ar vāciņiem - Medikamentu iegāde + Bankas ziežu fasēšanai-plastmasas (platkakla) ar vāciņiem + Medikamentu iegāde supplies none @@ -69859,7 +70725,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -69887,8 +70753,8 @@ price - Cena - Cena + Cena + Cena @@ -69899,7 +70765,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -69922,8 +70788,8 @@ R1S 2023/17-IEP382 - Bankas ziežu fasēšanai-plastmasas (platkakla) ar vāciņiem - Medikamentu iegāde + Bankas ziežu fasēšanai-plastmasas (platkakla) ar vāciņiem + Medikamentu iegāde supplies none @@ -69939,7 +70805,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -69967,8 +70833,8 @@ price - Cena - Cena + Cena + Cena @@ -69979,7 +70845,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -70002,8 +70868,8 @@ R1S 2023/17-IEP383 - Bankas ziežu fasēšanai-plastmasas (platkakla) ar vāciņiem - Medikamentu iegāde + Bankas ziežu fasēšanai-plastmasas (platkakla) ar vāciņiem + Medikamentu iegāde supplies none @@ -70019,7 +70885,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA @@ -70047,8 +70913,8 @@ price - Cena - Cena + Cena + Cena @@ -70059,7 +70925,7 @@ - Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu + Iesniegumu Iepirkumu uzraudzības birojam var iesniegt līdz iepirkuma līguma vai vispārīgās vienošanās noslēgšanas dienai šādos termiņos:1) 10 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai elektroniski, izmantojot drošu elektronisko parakstu vai pievienojot elektroniskajam pastam skenētu dokumentu, vai pa faksu vai nodota personiski;2) 15 dienu laikā pēc dienas, kad Publisko iepirkumu likuma 37. pantā minētā informācija nosūtīta attiecīgajai personai pa pastu @@ -70082,8 +70948,8 @@ R1S 2023/17-IEP384 - Enterālās barošanas līdzekļi - Medikamentu iegāde + Enterālās barošanas līdzekļi + Medikamentu iegāde supplies none @@ -70099,7 +70965,7 @@ Bruņinieku iela 5 Rīga LV-1001 - LV006 + LV00A LVA From 39dbebc5641a3d260bfc81fbd3f347467ea49697 Mon Sep 17 00:00:00 2001 From: Bertrand Lorentz Date: Mon, 14 Oct 2024 17:54:40 +0200 Subject: [PATCH 22/22] pom: Update version to 1.13.0 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index e8fddf3..5c9641d 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ eu.europa.ted.eforms eforms-sdk-analyzer - 1.13.0-SNAPSHOT + 1.13.0 kjar eForms SDK Analyzer @@ -49,7 +49,7 @@ UTF-8 - 2024-07-16T09:10:14Z + 2024-10-14T15:54:01Z s01.oss.sonatype.org